summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Hesse2015-06-30 10:20:02 +0200
committerChristian Hesse2015-06-30 10:20:02 +0200
commit661b599d85a969acbca6a6504c6bb58a0f0b0332 (patch)
tree2a53a9fd2215df168bd5944b9e226dd918a257f9
downloadaur-661b599d85a969acbca6a6504c6bb58a0f0b0332.tar.gz
initial import of ttf-exljbris 1.1-4
-rw-r--r--.SRCINFO27
-rw-r--r--PKGBUILD31
-rw-r--r--exljbris-font-licence.txt19
-rw-r--r--exljbris.install20
4 files changed, 97 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..b0bceac92c12
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,27 @@
+pkgbase = ttf-exljbris
+ pkgdesc = A collection of free opentype fonts by Jos Buivenga. Includes Delicious, Diavlo, Fontin, Fontin Sans and Tallys
+ pkgver = 1.1
+ pkgrel = 4
+ url = http://www.exljbris.com/
+ install = exljbris.install
+ arch = i686
+ arch = x86_64
+ license = custom
+ depends = fontconfig
+ depends = xorg-fonts-encodings
+ depends = xorg-font-utils
+ source = http://www.exljbris.com/dl/delicious-123.zip
+ source = http://www.exljbris.com/dl/Diavlo_II_37b2.zip
+ source = http://www.exljbris.com/dl/fontin_pc.zip
+ source = http://www.exljbris.com/dl/FontinSans_49.zip
+ source = http://www.exljbris.com/dl/tallys_15b2.zip
+ source = exljbris-font-licence.txt
+ sha256sums = e9d5ce8e7c8dbf521727bddfbbe1e947fb28f5a0143ee7f5287f45e5beb70ed2
+ sha256sums = 863acd293fb186eebdbf77cba2739f26626874c848bedb9b7577e07e5996a3d3
+ sha256sums = ddbb4ba57d0ab7d1af9d511de8e68d0fab9beec0c03eaf9c968f180b96100aa7
+ sha256sums = 8b04ea509ec5fa8ddf921c94ba1824130071d16b7f83b09bc257b9311ff65a6e
+ sha256sums = c0b951253e07557590b3dc2c7ffea19d553b3f5bf34d45f80b4114d90e527bad
+ sha256sums = ea29b01be55f6498af65c3553fb84d67babd881ac382697ba4d6a2e7ff1af5b0
+
+pkgname = ttf-exljbris
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..f200e5972ea0
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,31 @@
+# Contributor: Jan Misiak <fijam@archlinux.ux>
+
+pkgname=ttf-exljbris
+pkgver=1.1
+pkgrel=4
+pkgdesc='A collection of free opentype fonts by Jos Buivenga. Includes Delicious, Diavlo, Fontin, Fontin Sans and Tallys'
+arch=('i686' 'x86_64')
+license=('custom')
+url='http://www.exljbris.com/'
+depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils')
+install=exljbris.install
+source=('http://www.exljbris.com/dl/delicious-123.zip'
+ 'http://www.exljbris.com/dl/Diavlo_II_37b2.zip'
+ 'http://www.exljbris.com/dl/fontin_pc.zip'
+ 'http://www.exljbris.com/dl/FontinSans_49.zip'
+ 'http://www.exljbris.com/dl/tallys_15b2.zip'
+ 'exljbris-font-licence.txt')
+sha256sums=('e9d5ce8e7c8dbf521727bddfbbe1e947fb28f5a0143ee7f5287f45e5beb70ed2'
+ '863acd293fb186eebdbf77cba2739f26626874c848bedb9b7577e07e5996a3d3'
+ 'ddbb4ba57d0ab7d1af9d511de8e68d0fab9beec0c03eaf9c968f180b96100aa7'
+ '8b04ea509ec5fa8ddf921c94ba1824130071d16b7f83b09bc257b9311ff65a6e'
+ 'c0b951253e07557590b3dc2c7ffea19d553b3f5bf34d45f80b4114d90e527bad'
+ 'ea29b01be55f6498af65c3553fb84d67babd881ac382697ba4d6a2e7ff1af5b0')
+
+package() {
+ mkdir -p ${pkgdir}/usr/share/fonts/OTF
+
+ install -m0644 -D $(find -type f -name "*.otf") ${pkgdir}/usr/share/fonts/OTF
+ install -m0644 -D exljbris-font-licence.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
diff --git a/exljbris-font-licence.txt b/exljbris-font-licence.txt
new file mode 100644
index 000000000000..eb3a02e54343
--- /dev/null
+++ b/exljbris-font-licence.txt
@@ -0,0 +1,19 @@
+Font license information
+
+ * This font is free for personal and commercial use
+ * The font file/software may be modified to suit design of system
+ requirements, but strictly for your own (personal or commercial)
+ use. You may not sell or distribute it
+ * Embedding (in PDF's, Flash files and programs) is allowed
+ * You may use this font for Font-Face embedding, but only if you put
+ a link to www.exljbris.nl on your page and/or put this notice /* A
+ font by Jos Buivenga (exljbris) -> www.exljbris.nl */ in your CSS
+ file as near as possible to the piece of code that declares the
+ Font-Face embedding of this font.
+ * This font may not be distributed or sold -not online nor on any
+ media- without my permission
+ * This font is and remains (even when modified) the intellectual
+ property of Jos Buivenga
+ * Exljbris (Jos Buivenga) is not liable for any damage resulting
+ from the use of this font
+
diff --git a/exljbris.install b/exljbris.install
new file mode 100644
index 000000000000..e2a37b4a1f41
--- /dev/null
+++ b/exljbris.install
@@ -0,0 +1,20 @@
+post_install() {
+ echo -n "Updating font cache... "
+ fc-cache -s -f > /dev/null
+ mkfontscale /usr/share/fonts/OTF
+ mkfontdir /usr/share/fonts/OTF
+ echo "done."
+}
+
+post_upgrade() {
+ post_install $1
+}
+
+post_remove() {
+ post_install $1
+}
+
+op=$1
+shift
+
+$op $*