21 lines
507 B
Plaintext
21 lines
507 B
Plaintext
# Description: Basic directory searching utilities
|
|
# URL: https://www.gnu.org/software/findutils/
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
|
|
name=findutils
|
|
version=4.9.0
|
|
release=1
|
|
source=(http://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr --disable-nls
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm $PKG/usr/bin/{updatedb,locate}
|
|
rm $PKG/usr/share/man/man1/{updatedb.1,locate.1}
|
|
rm -r $PKG/usr/{libexec,var,share/{info,man/man5}}
|
|
}
|