summaryrefslogtreecommitdiff
path: root/extra/plotutils/PKGBUILD
blob: cd8d4f34738de3c398a7e018d0cf388095bd43ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# $Id: PKGBUILD 64564 2010-01-21 06:02:58Z eric $
# Maintainer: damir <damir@archlinux.org>
# Packager: Maksim Sipos (maxsipos at gmail dot com)

pkgname=plotutils
pkgver=2.6
pkgrel=1
arch=('x86_64' 'i686')
pkgdesc="Set of utilities and libraries for plotting."
url="http://directory.fsf.org/graphics/plotutils.html"
license=("GPL")
depends=("libpng" "gcc-libs" "libxaw>=1.0.5")
options=('!libtool')
install=plotutils.install
source=(http://ftp.gnu.org/pub/gnu/plotutils/$pkgname-$pkgver.tar.gz)
md5sums=('c08a424bd2438c80a786a7f4b5bb6a40')
sha1sums=('7921301d9dfe8991e3df2829bd733df6b2a70838')

build() {
  cd ${srcdir}/${pkgname}-${pkgver}
  ./configure --prefix=/usr \
	--with-gnu-ld \
	--with-x \
	--enable-libplotter || return 1
  make || return 1
  make DESTDIR="${pkgdir}" install || return 1
}