mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
684 B
Bash
22 lines
684 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Simo Leone <neotuli@gmail.com>
|
|
pkgname=t1utils
|
|
pkgver=1.33
|
|
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)
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install
|
|
install -D -m644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
|
}
|
|
md5sums=('a8d9dad4eab239357dd045275770eb8f'
|
|
'5a1334c824d21f0314c831f9fd19a587')
|