blob: 4901353d44524063503ad32bf46fb42b4ca8c56d (
plain)
1 # Description: A Wayland native snapshot editing tool, inspired by Snappy on macOS
2 # URL: https://github.com/jtheoof/swappy
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: gtk3 scdoc
5
6 name=swappy
7 version=1.5.1
8 release=1
9 source=(https://github.com/jtheoof/swappy/archive/v$version/$name-$version.tar.gz)
10
11 build() {
12 meson setup $name-$version build \
13 --prefix=/usr \
14 --buildtype=plain \
15 --wrap-mode nodownload \
16 -D b_lto=true \
17 -D b_pie=true
18 meson compile -C build
19 DESTDIR=$PKG meson install -C build
20
21 rm -r $PKG/usr/share/locale
22 }
|