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 /testing | |
parent | c3dd9f77681cc8d23c47cfdf5e2c5b6619b91b6b (diff) | |
download | aports-9fb982c8e37014f5468753b28db1412d1cbadc65.tar.bz2 aports-9fb982c8e37014f5468753b28db1412d1cbadc65.tar.xz |
main/libev: moved from testing
Diffstat (limited to 'testing')
-rw-r--r-- | testing/libev/APKBUILD | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/testing/libev/APKBUILD b/testing/libev/APKBUILD deleted file mode 100644 index 83afe50a0d..0000000000 --- a/testing/libev/APKBUILD +++ /dev/null @@ -1,42 +0,0 @@ -# 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" |