core/run-parts/PKGBUILD

22 lines
600 B
Bash
Raw Normal View History

2010-05-17 08:20:57 +08:00
# Maintainer: Phil Miller <philm@chakra-project.org>
2010-03-13 23:25:19 +08:00
pkgname=run-parts
2010-05-17 08:20:57 +08:00
pkgver=3.2.3
2010-04-04 22:20:41 +08:00
pkgrel=1
2010-03-13 23:25:19 +08:00
pkgdesc='run scripts or programs in a directory'
arch=('i686' 'x86_64')
url='http://packages.qa.debian.org/d/debianutils.html'
license=('GPL')
depends=('glibc')
2010-05-17 08:20:57 +08:00
source=("http://ftp.de.debian.org/debian/pool/main/d/debianutils/debianutils_${pkgver}.tar.bz2")
md5sums=('d66c337329114092d1ddab6adfdab57e')
2010-03-13 23:25:19 +08:00
build() {
cd $srcdir/debianutils-$pkgver
./configure --prefix=/usr
make
install -D -m755 run-parts $pkgdir/usr/bin/run-parts
install -D -m644 run-parts.8 $pkgdir/usr/share/man/man8/run-parts.8
}