mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-12 19:32:31 +01:00
46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=eina
|
|
pkgver=1.7.8
|
|
pkgrel=0
|
|
pkgdesc="Enlightenment's data types library (List, hash, etc) in C"
|
|
url="http://trac.enlightenment.org/e/wiki/Eina"
|
|
arch="all"
|
|
license="LGPL2+"
|
|
depends=
|
|
depends_dev="libiconv-dev"
|
|
makedepends="$depends_dev"
|
|
install=""
|
|
subpackages="$pkgname-dev"
|
|
source="http://download.enlightenment.org/releases/$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 \
|
|
--enable-amalgamation \
|
|
--enable-pthread \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
rm -f "$pkgdir"/usr/lib/*.la
|
|
}
|
|
|
|
md5sums="4c7715b636f71a5e07be4f33e72c6a69 eina-1.7.8.tar.gz"
|
|
sha256sums="e39c5d9cc9d0854521983fe653b8f2efe2946e74066c7c0456ffe62342535d18 eina-1.7.8.tar.gz"
|
|
sha512sums="05d04609fd2230fc7be168847b2f80d5381a4d5a3b4076cda8e9b0f731ac27c99534e5a71d7479cd69239d2ce73f0852ec364cbccc69a31bc834a7c0fa185de0 eina-1.7.8.tar.gz"
|