diff options
Diffstat (limited to 'testing/evilwm')
-rw-r--r-- | testing/evilwm/APKBUILD | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/testing/evilwm/APKBUILD b/testing/evilwm/APKBUILD new file mode 100644 index 000000000..b11c61d8c --- /dev/null +++ b/testing/evilwm/APKBUILD @@ -0,0 +1,39 @@ +# Contributor: Natanael Copa <ncopa@alpinelinux.org> +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=evilwm +pkgver=1.1.0_pre8 +_myver="${pkgver//_/}" +pkgrel=0 +pkgdesc="A minimalist window manager for the X Window System" +url="http://www.6809.org.uk/evilwm/" +arch="all" +license="custom" +depends= +depends_dev= +makedepends="libx11-dev libxext-dev libxrandr-dev" +install="" +subpackages="$pkgname-doc" +source="http://www.6809.org.uk/evilwm/evilwm-$_myver.tar.gz" + +_builddir="$srcdir"/evilwm-$_myver +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" + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 +} + +md5sums="efb842dba48970ad58c1dad38050b26e evilwm-1.1.0pre8.tar.gz" |