summaryrefslogtreecommitdiff
path: root/community/t1utils/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/t1utils/PKGBUILD')
-rw-r--r--community/t1utils/PKGBUILD25
1 files changed, 25 insertions, 0 deletions
diff --git a/community/t1utils/PKGBUILD b/community/t1utils/PKGBUILD
new file mode 100644
index 000000000..73d8e0204
--- /dev/null
+++ b/community/t1utils/PKGBUILD
@@ -0,0 +1,25 @@
+# $Id: PKGBUILD 43579 2011-03-27 20:40:19Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Maintainer: Simo Leone <neotuli@gmail.com>
+
+pkgname=t1utils
+pkgver=1.36
+pkgrel=1
+pkgdesc="A collection of simple Type 1 font manipulation programs"
+arch=('i686' 'x86_64')
+url="http://www.lcdf.org/~eddietwo/type/#t1utils"
+license=("custom")
+depends=('glibc')
+source=("http://www.lcdf.org/~eddietwo/type/$pkgname-$pkgver.tar.gz"
+ LICENSE)
+md5sums=('f580e78a38807bce0242b63b5da3a572'
+ '5a1334c824d21f0314c831f9fd19a587')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ ./configure --prefix=/usr
+# sed -i 's|getline|xgetline|' t1asm.c
+ make
+ make DESTDIR="$pkgdir" install
+ install -D -m644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}