d2334c6978
--HG-- extra : convert_revision : 913a14588f499b4db25f027d9754e972a480cb3d
25 lines
780 B
Plaintext
25 lines
780 B
Plaintext
# Template file for 'run-parts'
|
|
pkgname=run-parts
|
|
version=3.2.2
|
|
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>"
|
|
checksum=03d73b5f621aa432f683eb96b1080844fcc6135e6b64f43b9c34f82e74175e7e
|
|
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_install()
|
|
{
|
|
cd ${wrksrc} || return 1
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
install -D -m755 run-parts ${DESTDIR}/usr/bin/run-parts || return 1
|
|
install -D -m644 run-parts.8 \
|
|
${DESTDIR}/usr/share/man/man8/run-parts.8 || return 1
|
|
}
|