mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 03:37:14 +08:00
28 lines
802 B
Bash
28 lines
802 B
Bash
# $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
|
|
}
|