2009-03-05 19:39:23 +01:00
|
|
|
# Template file for 'rcorder'
|
|
|
|
pkgname=rcorder
|
|
|
|
version=2009.01
|
|
|
|
build_style=custom-install
|
|
|
|
short_desc="The NetBSD rcorder(8) program"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
|
|
long_desc="
|
|
|
|
rcorder is designed to print out a dependency ordering of a set of
|
|
|
|
interdependent files. Typically it is used to find an execution sequence
|
|
|
|
for a set of shell scripts in which certain files must be executed before
|
|
|
|
others.
|
|
|
|
|
|
|
|
This package is the same program than is available on NetBSD."
|
|
|
|
|
|
|
|
Add_dependency run glibc
|
|
|
|
|
|
|
|
do_install()
|
|
|
|
{
|
2009-03-11 06:31:56 +01:00
|
|
|
mkdir -p ${DESTDIR}/sbin
|
|
|
|
mkdir -p ${DESTDIR}/usr/share/man/man8
|
2009-03-05 19:39:23 +01:00
|
|
|
|
|
|
|
cd $XBPS_TEMPLATESDIR/rcorder/files
|
|
|
|
make || exit 1
|
2009-03-11 06:31:56 +01:00
|
|
|
install -m755 ./rcorder ${DESTDIR}/sbin
|
|
|
|
install -m644 ./rcorder.8 ${DESTDIR}/usr/share/man/man8
|
2009-03-05 19:39:23 +01:00
|
|
|
make clean
|
|
|
|
}
|