30 lines
844 B
Text
30 lines
844 B
Text
# Template file for 'run-parts'
|
|
pkgname=run-parts
|
|
version=4.0.1
|
|
wrksrc="debianutils-${version}"
|
|
distfiles="${DEBIAN_SITE}/main/d/debianutils/debianutils_${version}.tar.gz"
|
|
build_style=custom-install
|
|
short_desc="Run scripts or programs in a directory"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://packages.qa.debian.org/d/debianutils.html"
|
|
license="GPL-2"
|
|
checksum=d71861361be9814eea2aa66a6e35c171975f1d78604e5112caaeea8b1b2c6304
|
|
long_desc="
|
|
$pkgname runs all the executable files found in a directory.
|
|
This package comes from the GNU/Linux Debian system."
|
|
|
|
Add_dependency full glibc
|
|
|
|
do_build()
|
|
{
|
|
./configure --prefix=/usr
|
|
make ${makejobs} run-parts
|
|
}
|
|
|
|
do_install()
|
|
{
|
|
install -D -m755 ${wrksrc}/run-parts \
|
|
${DESTDIR}/usr/bin/run-parts
|
|
install -D -m644 ${wrksrc}/run-parts.8 \
|
|
${DESTDIR}/usr/share/man/man8/run-parts.8
|
|
}
|