mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
20 lines
709 B
Bash
20 lines
709 B
Bash
# $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
|
|
}
|