2006-02-23 15:26:10 +00:00
|
|
|
# Description: Basic directory searching utilities
|
|
|
|
# URL: http://www.gnu.org/software/findutils/
|
2007-01-23 17:25:18 +00:00
|
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=findutils
|
2019-08-30 11:42:03 +02:00
|
|
|
version=4.7.0
|
2016-01-04 17:33:39 +01:00
|
|
|
release=1
|
2019-08-30 11:42:03 +02:00
|
|
|
source=(http://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.xz)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2019-08-30 11:42:03 +02:00
|
|
|
|
2016-01-04 17:33:39 +01:00
|
|
|
./configure --prefix=/usr --disable-nls
|
2006-02-23 15:26:10 +00:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2019-08-30 11:42:03 +02:00
|
|
|
|
2009-06-09 11:05:01 +02:00
|
|
|
rm $PKG/usr/bin/{updatedb,locate}
|
2015-07-25 23:42:10 +02:00
|
|
|
rm $PKG/usr/share/man/man1/{updatedb.1,locate.1}
|
|
|
|
rm -r $PKG/usr/{libexec,var,share/{info,man/man5}}
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|