diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-09-16 10:23:51 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-09-16 10:25:08 +0000 |
commit | c885adb66452a84ff9e44539b79cb61df7a0c2b3 (patch) | |
tree | 84f70bb20218026df61e09e20c1cd5e525fb01a7 | |
parent | 6342a162510f7170d9eb0a4d2d503d38aac932fd (diff) | |
download | aports-c885adb66452a84ff9e44539b79cb61df7a0c2b3.tar.bz2 aports-c885adb66452a84ff9e44539b79cb61df7a0c2b3.tar.xz |
testing/unagi: new aport
a modular compositing manager which aims to be efficient, lightweight and responsive
https://projects.mini-dweeb.org/projects/unagi
-rw-r--r-- | testing/unagi/APKBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/testing/unagi/APKBUILD b/testing/unagi/APKBUILD new file mode 100644 index 0000000000..1d6eb9de4f --- /dev/null +++ b/testing/unagi/APKBUILD @@ -0,0 +1,41 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=unagi +pkgver=0.3.3 +pkgrel=0 +pkgdesc="A modular compositing manager" +url="https://projects.mini-dweeb.org/projects/unagi" +arch="all" +license="GPLv3" +depends="" +depends_dev="libxdg-basedir-dev libxcb-dev confuse-dev xcb-util-wm-dev + xcb-util-keysyms-dev xcb-util-renderutil-dev xcb-util-image-dev" +makedepends="$depends_dev" +install="" +subpackages="$pkgname-dev" +source="https://projects.mini-dweeb.org/attachments/download/111/unagi-$pkgver.tar.gz" + +_builddir="$srcdir"/unagi-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure --prefix=/usr \ + || return 1 + make || return +} + +package() { + cd "$_builddir" + make install DESTDIR="$pkgdir" || return 1 + find "$pkgdir"/usr -name '*.la' -delete +} + +md5sums="4a1bc93d23cbbafc87aa0c7f956a585c unagi-0.3.3.tar.gz" |