mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 12:26:52 +02:00
testing/edje: new aport
Enlightenment's graphical layout and animation library http://trac.enlightenment.org/e/wiki/Edje
This commit is contained in:
parent
bf4fb0398f
commit
3567d03ac2
40
testing/edje/APKBUILD
Normal file
40
testing/edje/APKBUILD
Normal 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"
|
||||
Loading…
x
Reference in New Issue
Block a user