diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..67c9b6c --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +fonts-lora (0.1.0) precise; urgency=low + + * Initial Release. + + -- Write.as Wed, 18 Apr 2018 14:20:25 +1200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..417a562 --- /dev/null +++ b/debian/control @@ -0,0 +1,12 @@ +Source: fonts-lora +Section: fonts +Priority: extra +Maintainer: Write.as +Build-Depends: meson, + debhelper (>= 9) +Standards-Version: 3.9.3 + +Package: fonts-lora +Architecture: any +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: Lora is a well-balanced contemporary serif with roots in calligraphy. It is a text typeface with moderate contrast well suited for body text. A paragraph set in Lora will make a memorable appearance because of its brushed curves in contrast with driving serifs. The overall typographic voice of Lora perfectly conveys the mood of a modern-day story, or an art essay. Technically Lora is optimised for screen appearance, and works equally well in print. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..e06f096 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,7 @@ +Format: http://dep.debian.net/deps/dep5 +Upstream-Name: fonts-lora +Source: fonts-lora + +Files: * +Copyright: 2018 A Bunch Tell LLC +License: SIL Open Font License diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..b3ae107 --- /dev/null +++ b/debian/rules @@ -0,0 +1,31 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# This file was extended to incorporate a Meson/Ninja build system. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +%: + dh $@ + +override_dh_auto_clean: + rm -rf debian/build + +override_dh_auto_configure: + mkdir -p debian/build + cd debian/build && meson --prefix=/usr ../.. + +override_dh_auto_build: + cd debian/build && ninja -v + +override_dh_auto_test: + cd debian/build && ninja test + +override_dh_auto_install: + cd debian/build && DESTDIR=${CURDIR}/debian/fonts-lora ninja install diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..89ae9db --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (native)