Add debian packaging.

This commit is contained in:
Adrian Cochrane 2018-08-27 18:04:11 +12:00
parent 78d5889b20
commit f3957f4a76
6 changed files with 57 additions and 0 deletions

5
debian/changelog vendored Normal file
View File

@ -0,0 +1,5 @@
fonts-lora (0.1.0) precise; urgency=low
* Initial Release.
-- Write.as <hello@write.as> Wed, 18 Apr 2018 14:20:25 +1200

1
debian/compat vendored Normal file
View File

@ -0,0 +1 @@
9

12
debian/control vendored Normal file
View File

@ -0,0 +1,12 @@
Source: fonts-lora
Section: fonts
Priority: extra
Maintainer: Write.as <hello@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.

7
debian/copyright vendored Normal file
View File

@ -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 <hello@write.as>
License: SIL Open Font License

31
debian/rules vendored Executable file
View File

@ -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

1
debian/source/format vendored Normal file
View File

@ -0,0 +1 @@
3.0 (native)