diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2018-04-23 19:44:46 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-04-23 19:44:46 +0000 |
commit | 27d1e194717b1696b3169ad43df027876247b91a (patch) | |
tree | 8416dc507bc2aed5f47588d345abe1ef22a6c60f /community/libwnck | |
parent | 0090cfe5db52bd764631d9b1d55e6e74c7cf2ae8 (diff) | |
download | aports-27d1e194717b1696b3169ad43df027876247b91a.tar.bz2 aports-27d1e194717b1696b3169ad43df027876247b91a.tar.xz |
main/{xfce*} => community/
Move everything xfce to community
Diffstat (limited to 'community/libwnck')
-rw-r--r-- | community/libwnck/APKBUILD | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/community/libwnck/APKBUILD b/community/libwnck/APKBUILD new file mode 100644 index 0000000000..67c3799a06 --- /dev/null +++ b/community/libwnck/APKBUILD @@ -0,0 +1,44 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=libwnck +pkgver=2.31.0 +pkgrel=6 +pkgdesc="Window Navigator Construction Kit" +url="https://git.gnome.org/browse/libwnck" +arch="all" +license="LGPL-2.0+" +subpackages="$pkgname-dev $pkgname-doc $pkgname-lang" +depends= +makedepends="glib-dev gtk+2.0-dev libx11-dev pango-dev cairo-dev intltool + startup-notification-dev gobject-introspection-dev libxres-dev" +source="https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz" + +prepare() { + cd "$builddir" + update_config_sub + default_prepare +} + +build() { + cd "$builddir" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --disable-static + make +} + +check() { + cd "$builddir" + make check +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install + rm "$pkgdir"/usr/bin/wnckprop \ + "$pkgdir"/usr/bin/wnck-urgency-monitor +} +sha512sums="54262a08882021f08f3ba7f2ddfa33fc1f02e391a0f61cf999a50a089e0d277dfe13ab133c1a46e9abf0599bd24c21dacff80b51013cbb1375d2cd71ac9abbe9 libwnck-2.31.0.tar.xz" |