core/findutils/Pkgfile

22 lines
609 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Basic directory searching utilities
# URL: http://www.gnu.org/software/findutils/
# Maintainer: CRUX System Team, core-ports at crux dot nu
2006-02-23 16:26:10 +01:00
name=findutils
2007-06-02 10:17:31 +02:00
version=4.2.31
2006-02-23 16:26:10 +01:00
release=1
source=(http://ftp.gnu.org/pub/gnu/$name/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
2006-11-26 12:16:01 +01:00
--disable-nls \
--mandir=/usr/man
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/bin/{updatedb,locate} \
2006-11-26 12:16:01 +01:00
$PKG/usr/man/man1/{updatedb.1,locate.1} \
$PKG/usr/man/man5 \
$PKG/usr/{libexec,share,var}
2006-02-23 16:26:10 +01:00
}