mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-22 06:02:18 +02:00
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=edje
|
|
pkgver=1.7.8
|
|
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
|
|
rm "$pkgdir"/usr/lib/*.la
|
|
}
|
|
|
|
md5sums="06399e95de312de12342df8f16c7c885 edje-1.7.8.tar.gz"
|
|
sha256sums="924eae1be1fe755997be8074d32af4b6a83ed7e57057edccb2cf46b83c33202d edje-1.7.8.tar.gz"
|
|
sha512sums="2f242d9e7aba2f5e840538b8e3e0d687556734be6201cf2644b72788c5cee830ab274f9447b1faef687fb083140d7905f2f9bf27aac5e333c0152aaf1834098d edje-1.7.8.tar.gz"
|