mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-05 00:26:01 +00:00
21 lines
465 B
Plaintext
Executable File
21 lines
465 B
Plaintext
Executable File
# description : File indexing and search provider used in the GNOME desktop environment
|
|
# depends : json-glib libseccomp libsoup vala sqlite upower
|
|
|
|
name=tracker
|
|
version=2.3.1
|
|
release=1
|
|
source="http://ftp.gnome.org/pub/gnome/sources/tracker/${version%.*}/tracker-$version.tar.xz"
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
mkdir build
|
|
cd build
|
|
|
|
meson --prefix=/usr --libexecdir=lib --sysconfdir=/etc ..
|
|
ninja
|
|
DESTDIR=$PKG ninja install
|
|
|
|
rm -r $PKG/usr/share/locale
|
|
}
|