blob: 9833a57c8a0ee3c98f0efbc79966f68b2a408535 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# $Id: PKGBUILD 88333 2013-04-16 13:31:22Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Simo Leone <neotuli@gmail.com>
pkgname=t1utils
pkgver=1.37
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=('dcff07df0b334c06d1808530956a634e'
'5a1334c824d21f0314c831f9fd19a587')
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
install -D -m644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|