PKGBUILDs/extra/potrace/PKGBUILD

21 lines
709 B
Bash
Raw Normal View History

2009-10-10 02:23:22 +00:00
# $Id: PKGBUILD 35770 2009-04-17 02:54:38Z eric $
# Maintainer: damir <damir@archlinux.org>
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>
pkgname=potrace
pkgver=1.8
pkgrel=2
pkgdesc="A utility for tracing a bitmap. Input=portable bitmap (PBM) Output formats: EPS, PostScript, PDF, SVG, Xfig, GIMP-path, and PGM"
arch=("i686" "x86_64")
url="http://potrace.sourceforge.net/"
license=('GPL')
depends=('glibc' 'zlib')
source=(http://potrace.sourceforge.net/download/$pkgname-$pkgver.tar.gz)
md5sums=('e73b45565737d64011612704dd4d9f86')
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr --mandir=/usr/share/man || return 1
make || return 1
make DESTDIR=$pkgdir install || return 1
}