mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
21 lines
627 B
Bash
21 lines
627 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Maintainer: William Rea <sillywilly@gmail.com>
|
|
|
|
pkgname=mftrace
|
|
pkgver=1.2.15
|
|
pkgrel=1
|
|
pkgdesc="Traces TeX bitmap fonts into PFA, PFB, or TTF"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.xs4all.nl/~hanwen/mftrace/"
|
|
license=("GPL")
|
|
depends=('python' 'potrace' 't1utils')
|
|
source=(http://lilypond.org/download/sources/mftrace/mftrace-$pkgver.tar.gz)
|
|
md5sums=('88c121f7046b3950518edd74ff9fbb35')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|