-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPKGBUILD
More file actions
27 lines (23 loc) · 697 Bytes
/
PKGBUILD
File metadata and controls
27 lines (23 loc) · 697 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
pkgname=spotlight
pkgver=0.0.1
pkgrel=3
pkgdesc="Spotlight for TwisterOS: OSX style app finder."
arch=('aarch64')
url="https://github.com/krishenriksen/spotlight"
license=('GPL3')
depends=('libgee>=0.18.0' 'gnome-menus>=3.13.0' 'libwnck3>=3.20.0' 'glib2>=2.50.0' 'glibc>=2.28.0' 'gtk3>=3.22.0' 'cairo>=1.15.0' 'gdk-pixbuf2>=2.36.0' 'xterm')
makedepends=('meson' 'ninja' 'vala>=0.28.0')
source=("https://github.com/krishenriksen/spotlight/archive/v$pkgver.tar.gz")
sha256sums=("SKIP")
prepare() {
rm -rf build
}
build() {
cd "$srcdir/$pkgname-$pkgver"
meson . build --prefix /usr
ninja -C build
}
package() {
cd "$srcdir/$pkgname-$pkgver"
DESTDIR="$pkgdir" ninja -C build install
}