mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
20 lines
719 B
Bash
20 lines
719 B
Bash
# $Id: PKGBUILD 3587 2009-10-06 19:28:48Z spupykin $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Contributor: tuxbubling <tuxbubling@jabber.fr>
|
|
|
|
pkgname=cacti
|
|
pkgver=0.8.7e
|
|
pkgrel=1
|
|
pkgdesc="complete network graphing solution designed to harness the power of RRDTool's data storage and graphing functionality"
|
|
arch=(any)
|
|
url="http://www.cacti.net"
|
|
license=('GPL')
|
|
depends=('rrdtool' 'mysql' 'php' 'net-snmp' 'xorg-fonts-100dpi')
|
|
source=(http://www.cacti.net/downloads/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('7563a58a57d2c6cc0da28cc341a30969')
|
|
|
|
build() {
|
|
mkdir -p $pkgdir/srv/http/cacti
|
|
mv $srcdir/$pkgname-$pkgver/* $pkgdir/srv/http/cacti && \
|
|
echo "deny from all" >> $pkgdir/srv/http/cacti/.htaccess
|
|
}
|