core/findutils/Pkgfile

21 lines
507 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Basic directory searching utilities
2021-12-13 12:21:30 +01:00
# URL: https://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
2022-02-05 18:24:50 +01:00
version=4.9.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 16:26:10 +01:00
build() {
2021-12-13 12:21:30 +01:00
cd $name-$version
2019-08-30 11:42:03 +02:00
2021-12-13 12:21:30 +01:00
./configure --prefix=/usr --disable-nls
make
make DESTDIR=$PKG install
2019-08-30 11:42:03 +02:00
2021-12-13 12:21:30 +01:00
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}}
2006-02-23 16:26:10 +01:00
}