diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-06-29 10:39:38 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-06-29 10:39:38 +0000 |
commit | 9fb982c8e37014f5468753b28db1412d1cbadc65 (patch) | |
tree | cf4a75382ef77299119bb350af7a90826695cbcc /main | |
parent | c3dd9f77681cc8d23c47cfdf5e2c5b6619b91b6b (diff) | |
download | aports-9fb982c8e37014f5468753b28db1412d1cbadc65.tar.bz2 aports-9fb982c8e37014f5468753b28db1412d1cbadc65.tar.xz |
main/libev: moved from testing
Diffstat (limited to 'main')
-rw-r--r-- | main/libev/APKBUILD | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/main/libev/APKBUILD b/main/libev/APKBUILD new file mode 100644 index 0000000000..83afe50a0d --- /dev/null +++ b/main/libev/APKBUILD @@ -0,0 +1,42 @@ +# Contributor: William Pitcock <nenolod@dereferenced.org> +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=libev +pkgver=4.04 +pkgrel=1 +pkgdesc="event dispatch library" +url="http://libev.schmorp.de/" +arch="all" +license="BSD GPL" +depends= +depends_dev= +makedepends="$depends_dev" +install="" +subpackages="$pkgname-dev $pkgname-doc" +source="http://dist.schmorp.de/${pkgname}/${pkgname}-${pkgver}.tar.gz" + +_builddir="${srcdir}/${pkgname}-${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 \ + --sysconfdir=/etc || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + rm "$pkgdir"/usr/include/event.h \ + "$pkgdir"/usr/lib/*.la +} + +md5sums="c1130d0a4782681ba5277df1bc3fb335 libev-4.04.tar.gz" |