Compare commits
2 Commits
f2350e67a1
...
f3957f4a76
Author | SHA1 | Date | |
---|---|---|---|
![]() |
f3957f4a76 | ||
![]() |
78d5889b20 |
5
debian/changelog
vendored
Normal file
5
debian/changelog
vendored
Normal 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
1
debian/compat
vendored
Normal file
@ -0,0 +1 @@
|
||||
9
|
12
debian/control
vendored
Normal file
12
debian/control
vendored
Normal 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
7
debian/copyright
vendored
Normal 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
31
debian/rules
vendored
Executable 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
1
debian/source/format
vendored
Normal file
@ -0,0 +1 @@
|
||||
3.0 (native)
|
11
meson.build
Normal file
11
meson.build
Normal file
@ -0,0 +1,11 @@
|
||||
project('fonts-lora')
|
||||
|
||||
install_data(
|
||||
'Lora-Bold.ttf', 'Lora-BoldItalic.ttf', 'Lora-Italic.ttf', 'Lora-Regular.ttf',
|
||||
install_dir: join_paths(get_option('datadir'), 'fonts', 'lora')
|
||||
)
|
||||
|
||||
install_data(
|
||||
'SIL Open Font License.txt',
|
||||
install_dir: join_paths(get_option('datadir'), 'fonts-lora')
|
||||
)
|
Loading…
Reference in New Issue
Block a user