core/mlocate/Pkgfile

24 lines
623 B
Plaintext

# Description: Fast merging drop-in replacement for slocate
# URL: https://pagure.io/mlocate
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=mlocate
version=0.26
release=2
source=(https://releases.pagure.org/$name/$name-$version.tar.xz \
mlocate updatedb.conf)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var/lib \
--disable-nls
make
make DESTDIR=$PKG install
install -D -m 0755 $SRC/mlocate $PKG/etc/cron/daily/mlocate
install -m 0644 $SRC/updatedb.conf $PKG/etc
}