core/rrdtool/PKGBUILD

45 lines
1.5 KiB
Bash
Raw Normal View History

2012-10-03 20:48:05 +08:00
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
# Contributors from Arch: Eric Belanger <eric@archlinux.org>
# Tom K <tom@archlinux.org>
2010-03-14 23:48:48 +08:00
pkgname=rrdtool
2016-04-21 21:59:30 +08:00
pkgver=1.6.0
pkgrel=1
2010-03-14 23:48:48 +08:00
pkgdesc="Data logging and graphing application"
arch=('x86_64')
2010-03-14 23:48:48 +08:00
url="http://www.rrdtool.org"
license=('GPL')
2010-05-17 15:50:50 +08:00
depends=('libpng' 'libxml2' 'pango')
2012-10-03 20:48:05 +08:00
makedepends=('intltool' 'ruby' 'python2' 'tcl' 'lua' 'groff')
2010-03-14 23:48:48 +08:00
optdepends=('tcl: to use corresponding binding' \
'python2: to use corresponding binding' \
2010-03-14 23:48:48 +08:00
'ruby: to use corresponding binding' \
'lua: to use corresponding binding')
2016-04-21 21:59:30 +08:00
options=('!makeflags')
source=("http://oss.oetiker.ch/rrdtool/pub/${pkgname}-${pkgver}.tar.gz")
sha1sums=('9866b41bda9416188f236d61d24f185b173fd571')
2010-03-14 23:48:48 +08:00
prepare() {
cd ${pkgname}-${pkgver}
# fix FS#28521 make ruby install to vendor_ruby instead of site_ruby
2016-04-21 21:59:30 +08:00
sed -e 's/$(RUBY) ${abs_srcdir}\/ruby\/extconf.rb/& --vendor/' -i bindings/Makefile.am
aclocal
automake
}
2012-10-03 20:48:05 +08:00
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
2016-04-21 21:59:30 +08:00
./configure --prefix=/usr --localstatedir=/var --disable-rpath \
--enable-perl --enable-perl-site-install --with-perl-options='INSTALLDIRS=vendor' \
--enable-ruby --enable-ruby-site-install --enable-python \
--enable-lua --enable-lua-site-install \
--enable-tcl --disable-libwrap
make LIBS+="-lglib-2.0"
2010-05-17 15:50:50 +08:00
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" includedir=/usr/include install
2012-10-03 20:48:05 +08:00
install -D -m644 COPYRIGHT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
2010-03-14 23:48:48 +08:00
}