mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-04 16:21:38 +01:00
43 lines
909 B
Plaintext
43 lines
909 B
Plaintext
# 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"
|