run-parts: update to 4.0.1.
This commit is contained in:
parent
f190895d30
commit
6997d08915
|
@ -1,12 +1,14 @@
|
||||||
# Template file for 'run-parts'
|
# Template file for 'run-parts'
|
||||||
pkgname=run-parts
|
pkgname=run-parts
|
||||||
version=3.4.1
|
version=4.0.1
|
||||||
wrksrc="debianutils-${version}"
|
wrksrc="debianutils-${version}"
|
||||||
distfiles="${DEBIAN_SITE}/main/d/debianutils/debianutils_${version}.tar.gz"
|
distfiles="${DEBIAN_SITE}/main/d/debianutils/debianutils_${version}.tar.gz"
|
||||||
build_style=custom-install
|
build_style=custom-install
|
||||||
short_desc="Run scripts or programs in a directory"
|
short_desc="Run scripts or programs in a directory"
|
||||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||||
checksum=0839acc0c1ab359e7921ae6a7bbb82491107b2fc721d61aa33b2cc96de9ec2c5
|
homepage="http://packages.qa.debian.org/d/debianutils.html"
|
||||||
|
license="GPL-2"
|
||||||
|
checksum=d71861361be9814eea2aa66a6e35c171975f1d78604e5112caaeea8b1b2c6304
|
||||||
long_desc="
|
long_desc="
|
||||||
$pkgname runs all the executable files found in a directory.
|
$pkgname runs all the executable files found in a directory.
|
||||||
This package comes from the GNU/Linux Debian system."
|
This package comes from the GNU/Linux Debian system."
|
||||||
|
@ -15,14 +17,14 @@ Add_dependency full glibc
|
||||||
|
|
||||||
do_build()
|
do_build()
|
||||||
{
|
{
|
||||||
cd ${wrksrc} && ./configure --prefix=/usr && \
|
./configure --prefix=/usr
|
||||||
make ${makejobs} run-parts || return 1
|
make ${makejobs} run-parts
|
||||||
}
|
}
|
||||||
|
|
||||||
do_install()
|
do_install()
|
||||||
{
|
{
|
||||||
install -D -m755 ${wrksrc}/run-parts \
|
install -D -m755 ${wrksrc}/run-parts \
|
||||||
${DESTDIR}/usr/bin/run-parts || return 1
|
${DESTDIR}/usr/bin/run-parts
|
||||||
install -D -m644 ${wrksrc}/run-parts.8 \
|
install -D -m644 ${wrksrc}/run-parts.8 \
|
||||||
${DESTDIR}/usr/share/man/man8/run-parts.8 || return 1
|
${DESTDIR}/usr/share/man/man8/run-parts.8
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue