diff options
Diffstat (limited to 'main/exo/APKBUILD')
-rw-r--r-- | main/exo/APKBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/main/exo/APKBUILD b/main/exo/APKBUILD new file mode 100644 index 0000000000..27c1c80492 --- /dev/null +++ b/main/exo/APKBUILD @@ -0,0 +1,34 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=exo +pkgver=0.6.2 +pkgrel=0 +pkgdesc="Extensions to Xfce by os-cillation" +url="http://www.os-cillation.com/article.php?sid=40" +arch="all" +license="GPL-2 LGPL-2" +subpackages="$pkgname-dev $pkgname-doc" +depends="hicolor-icon-theme" +makedepends="libxfce4util-dev perl perl-uri gtk+-dev libnotify-dev" +install= +source="http://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2" + +depends_dev="gtk+-dev libxfce4util-dev" +build() { + cd "$srcdir"/$pkgname-$pkgver + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib/xfce4 \ + --localstatedir=/var \ + --disable-static \ + --disable-python \ + --enable-notifications \ + || return 1 + make || return 1 +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make DESTDIR="$pkgdir" install || return 1 + rm -f "$pkgdir"/usr/lib/*.la +} +md5sums="e25333df350abc30999cd16fe96ab690 exo-0.6.2.tar.bz2" |