aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorRasmus Thomsen <oss@cogitri.dev>2019-09-11 21:45:54 +0200
committerLeo <thinkabit.ukim@gmail.com>2019-09-11 21:09:01 -0300
commite3239b3e2fa96020d2de168695c8e883b55ce2f8 (patch)
treeed9010ae2daa37aaf1c6802cbaf12a22621db402 /testing
parentcf10f62404fb591cdc685dcf78dad6c06d724379 (diff)
downloadaports-e3239b3e2fa96020d2de168695c8e883b55ce2f8.tar.bz2
aports-e3239b3e2fa96020d2de168695c8e883b55ce2f8.tar.xz
testing/gpaste: new aport
Diffstat (limited to 'testing')
-rw-r--r--testing/gpaste/APKBUILD45
1 files changed, 45 insertions, 0 deletions
diff --git a/testing/gpaste/APKBUILD b/testing/gpaste/APKBUILD
new file mode 100644
index 0000000000..0b3c3b8449
--- /dev/null
+++ b/testing/gpaste/APKBUILD
@@ -0,0 +1,45 @@
+# Contributor: Rasmus Thomsen <oss@cogitri.dev>
+# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
+pkgname="gpaste"
+pkgver="3.34.0"
+pkgrel=0
+pkgdesc="Clipboard managment system"
+url="https://github.com/Keruspe/GPaste"
+arch="all !armhf !s390x" # limited by gnome-control-center
+license="BSD-2-Clause"
+makedepends="meson gtk+3.0-dev gnome-control-center-dev dbus-dev mutter-dev
+ gjs-dev appstream-glib-dev vala"
+subpackages="$pkgname-dev $pkgname-lang $pkgname-doc $pkgname-gnome:_gnome"
+source="gpaste-$pkgver.tar.gz::https://github.com/Keruspe/GPaste/archive/v$pkgver.tar.gz"
+builddir="$srcdir/GPaste-$pkgver"
+
+build() {
+ meson \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --mandir=/usr/share/man \
+ --localstatedir=/var \
+ --buildtype=release \
+ -Dsystemd=false \
+ . output
+ ninja -C output
+}
+
+check() {
+ ninja -C output test
+}
+
+package() {
+ DESTDIR="$pkgdir" ninja -C output install
+}
+
+_gnome() {
+ install_if="$pkgname=$pkgver-r$pkgrel gnome-shell gnome-control-center"
+ depends="gnome-control-center"
+ mkdir -p "$subpkgdir"/usr/share
+ mv "$pkgdir"/usr/share/gnome-shell \
+ "$pkgdir"/usr/share/gnome-control-center \
+ "$subpkgdir"/usr/share
+}
+
+sha512sums="3ed74409b134e85477013f917fa3c326460ab30ed070463de5f5194741667e1bf00358ecc7c24de26c794208400f22d00876e0db043c5122796900a0545c7491 gpaste-3.34.0.tar.gz"