swappy: initial commit, version 1.4.0

This commit is contained in:
Tim Biermann 2021-09-19 22:48:31 +02:00
parent 18e3ce6837
commit feda65baa2
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 41 additions and 0 deletions

14
swappy/.footprint Normal file
View File

@ -0,0 +1,14 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/swappy
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/applications/
-rw-r--r-- root/root usr/share/applications/swappy.desktop
drwxr-xr-x root/root usr/share/icons/
drwxr-xr-x root/root usr/share/icons/hicolor/
drwxr-xr-x root/root usr/share/icons/hicolor/scalable/
drwxr-xr-x root/root usr/share/icons/hicolor/scalable/apps/
-rw-r--r-- root/root usr/share/icons/hicolor/scalable/apps/swappy.svg
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/swappy.1.gz

5
swappy/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3yfazm7SH1CWd3rpG+5VSHthP3u9mmNBvgTAGJtGyzlUHqjt+P6hfmy4iTK/kRzYVH1LKh4/04HFVWAxIe+9DA4=
SHA256 (Pkgfile) = 9cb44f596dd27ce05d7419ecc7d71dd9b52678e9819484580c468f3b6f05599a
SHA256 (.footprint) = 13869d7f44c4b2dc7c8dc46324c1c7c0b889530800fdfe425081cf269141477a
SHA256 (swappy-1.4.0.tar.gz) = 1b1f26fb283d6bb441581b39826e6c254546131e0a2e568de96f4089a1f9ba66

22
swappy/Pkgfile Normal file
View File

@ -0,0 +1,22 @@
# Description: A Wayland native snapshot editing tool, inspired by Snappy on macOS
# URL: https://github.com/jtheoof/swappy
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: gtk3 scdoc
name=swappy
version=1.4.0
release=1
source=(https://github.com/jtheoof/swappy/archive/v$version/$name-$version.tar.gz)
build() {
meson setup $name-$version build \
--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
rm -r $PKG/usr/share/locale
}