42 lines
1.3 KiB
Bash
42 lines
1.3 KiB
Bash
# Template file for 'findutils'
|
|
pkgname=findutils
|
|
version=4.6.0
|
|
revision=2
|
|
bootstrap=yes
|
|
build_style=gnu-configure
|
|
configure_args="--program-prefix=g --localstatedir=/var/lib/locate"
|
|
short_desc="The GNU Find Utilities"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="GPL-3"
|
|
homepage="http://www.gnu.org/software/findutils"
|
|
distfiles="${GNU_SITE}/$pkgname/$pkgname-$version.tar.gz"
|
|
checksum=ded4c9f73731cd48fec3b6bdaccce896473b6d8e337e9612e16cf1431bb1169d
|
|
|
|
make_dirs="/var/lib/locate 0755 root root"
|
|
conf_files="/etc/updatedb.conf"
|
|
|
|
alternatives="
|
|
locate:locate:/usr/bin/glocate
|
|
locate:locate.1:/usr/share/man/man1/glocate.1
|
|
locate:locatedb.5:/usr/share/man/man5/glocatedb.5
|
|
locate:updatedb:/usr/bin/gupdatedb
|
|
locate:updatedb.1:/usr/share/man/man1/gupdatedb.1
|
|
xargs:xargs:/usr/bin/gxargs
|
|
xargs:xargs.1:/usr/share/man/man1/gxargs.1
|
|
find:find:/usr/bin/gfind
|
|
find:find.1:/usr/share/man/man1/gfind.1
|
|
"
|
|
|
|
post_install() {
|
|
# Install the cron daily job.
|
|
vinstall ${FILESDIR}/updatedb.cron-daily 744 etc/cron.daily updatedb
|
|
# Install the updatedb conf file.
|
|
vinstall ${FILESDIR}/updatedb.conf 640 etc
|
|
|
|
# remove 'g' prefix.
|
|
for f in gbigram gcode gfrcode; do
|
|
mv ${DESTDIR}/usr/libexec/${f} ${DESTDIR}/usr/libexec/${f#g}
|
|
sed -i "s/${f}/${f#g}/" ${DESTDIR}/usr/bin/gupdatedb
|
|
done
|
|
}
|