mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-12 19:32:31 +01:00
44 lines
1.1 KiB
Plaintext
44 lines
1.1 KiB
Plaintext
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=eio
|
|
pkgver=1.7.8
|
|
pkgrel=0
|
|
pkgdesc="Eio, async I/O library"
|
|
url="http://trac.enlightenment.org/e/wiki/Eina"
|
|
arch="all"
|
|
license="LGPLv2.1"
|
|
depends=
|
|
depends_dev="eet-dev eina-dev ecore-dev"
|
|
makedepends="$depends_dev"
|
|
install=
|
|
subpackages="$pkgname-dev"
|
|
source="http://download.enlightenment.org/releases/eio-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/eio-$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 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
rm -f "$pkgdir"/usr/lib/*.la
|
|
}
|
|
|
|
md5sums="a5e1608a629667de3cfd17289d599b07 eio-1.7.8.tar.gz"
|
|
sha256sums="f18831389f6b735e73c74d7f411602722dc8ce214ac3f4171b59d216d842a3b0 eio-1.7.8.tar.gz"
|
|
sha512sums="d9173cad4a4e2ed312d5fc21f5c8a49bc9d8993153495516255bf18eee6d53f553114d6d59be81891d31dd884ac83dd2a1f5542830d76d6900e54a81951af457 eio-1.7.8.tar.gz"
|