testing/edje: new aport

Enlightenment's graphical layout and animation library
http://trac.enlightenment.org/e/wiki/Edje
This commit is contained in:
Natanael Copa 2011-05-25 15:54:28 +00:00
parent bf4fb0398f
commit 3567d03ac2

40
testing/edje/APKBUILD Normal file
View File

@ -0,0 +1,40 @@
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=edje
pkgver=1.0.0
pkgrel=0
pkgdesc="Enlightenment's graphical layout and animation library"
url="http://trac.enlightenment.org/e/wiki/Edje"
arch="all"
license="BSD"
depends=
depends_dev="lua-dev eina-dev eet-dev embryo-dev ecore-dev evas-dev"
makedepends="$depends_dev"
install=""
subpackages="$pkgname-dev"
source="http://download.enlightenment.org/releases/edje-$pkgver.tar.gz"
_builddir="$srcdir"/edje-$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
}
md5sums="14c33c2b9d1bd36d8507d55597c77991 edje-1.0.0.tar.gz"