2008-10-31 10:37:40 +01:00
|
|
|
# Description: Fast merging drop-in replacement for slocate
|
2019-02-15 18:50:46 +01:00
|
|
|
# URL: https://pagure.io/mlocate
|
2008-10-31 10:37:40 +01:00
|
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
|
|
|
|
|
|
name=mlocate
|
2012-09-28 16:42:45 +02:00
|
|
|
version=0.26
|
2015-07-25 22:51:22 +02:00
|
|
|
release=2
|
2017-03-07 10:45:40 +01:00
|
|
|
source=(https://releases.pagure.org/$name/$name-$version.tar.xz \
|
2008-10-31 10:37:40 +01:00
|
|
|
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
|
|
|
|
}
|