diff options
author | Tim Biermann <tbier@posteo.de> | 2021-09-19 19:55:16 +0200 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2021-09-19 19:55:16 +0200 |
commit | a1389a905eb5cc84d1c8e90499242602bee61ebf (patch) | |
tree | bc6ba7658dff58c8ca54ae28e70cf86a8f3f9fd1 /grim | |
parent | 5058bd2ae89715e18737353f5fae80eb468dd68f (diff) | |
download | contrib-a1389a905eb5cc84d1c8e90499242602bee61ebf.tar.gz contrib-a1389a905eb5cc84d1c8e90499242602bee61ebf.tar.xz |
grim: initial commit, version 1.3.2
Diffstat (limited to 'grim')
-rw-r--r-- | grim/.footprint | 3 | ||||
-rw-r--r-- | grim/.signature | 5 | ||||
-rw-r--r-- | grim/Pkgfile | 23 |
3 files changed, 31 insertions, 0 deletions
diff --git a/grim/.footprint b/grim/.footprint new file mode 100644 index 000000000..11828d391 --- /dev/null +++ b/grim/.footprint @@ -0,0 +1,3 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/grim diff --git a/grim/.signature b/grim/.signature new file mode 100644 index 000000000..301e08ebb --- /dev/null +++ b/grim/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF3ynsfA8yKQQNHO6YCVtaKbOwN+dv5hRTTvtaTIaguyOEO7daObUdS4cv9AlsUo0LbYrEnl0HQ4Af9zoCjBiJ6A4= +SHA256 (Pkgfile) = c424c399bb8b2cf726a92b4668d207eb29c6a399fcb480d5e58361003d71ece5 +SHA256 (.footprint) = 4a30d767110c116125a3214f7563187ac62cf79a7d99a9635dc6e3cd2989a32c +SHA256 (grim-1.3.2.tar.gz) = 42c2952e98389506156c08e40e0c37afdc2ec5ef4d55a5a4febde6acdac4d1c8 diff --git a/grim/Pkgfile b/grim/Pkgfile new file mode 100644 index 000000000..1bf3bb008 --- /dev/null +++ b/grim/Pkgfile @@ -0,0 +1,23 @@ +# Description: Screenshot utility for Wayland +# URL: https://github.com/emersion/grim +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: pango wayland-protocols +# Optional: libjpeg-turbo scdoc + +name=grim +version=1.3.2 +release=1 +source=(https://github.com/emersion/grim/archive/v$version/$name-$version.tar.gz) + +build() { + prt-get isinst bash-completion && PKGMK_GRIM+=' -D bash-completions=true' + + meson setup $name-$version build $PKGMK_GRIM \ + --prefix=/usr \ + --buildtype=plain \ + --wrap-mode nodownload \ + -D b_lto=true \ + -D b_pie=true + meson compile -C build + DESTDIR=$PKG meson install -C build +} |