diff options
Diffstat (limited to 'extra/potrace/PKGBUILD')
-rw-r--r-- | extra/potrace/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/extra/potrace/PKGBUILD b/extra/potrace/PKGBUILD new file mode 100644 index 000000000..0debf3aa1 --- /dev/null +++ b/extra/potrace/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 104345 2011-01-01 13:50:24Z bisson $ +# Maintainer: damir <damir@archlinux.org> +# Contributor: Damir Perisa <damir.perisa@bluewin.ch> + +pkgname=potrace +pkgver=1.9 +pkgrel=2 +pkgdesc='Utility for tracing a bitmap. Input: PBM, PGM, PPM, or BMP. Output: EPS, PostScript, PDF, SVG, Xfig, Gimppath, or PGM.' +arch=('i686' 'x86_64') +url='http://potrace.sourceforge.net/' +license=('GPL') +depends=('zlib') +options=('!libtool') +source=("http://potrace.sourceforge.net/download/${pkgname}-${pkgver}.tar.gz") +sha1sums=('c3ace609c24a0d5e03bbab5f22478c2af69cf1c4') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --mandir=/usr/share/man --with-libpotrace + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |