diff options
Diffstat (limited to 'testing/emotion/APKBUILD')
-rw-r--r-- | testing/emotion/APKBUILD | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/testing/emotion/APKBUILD b/testing/emotion/APKBUILD new file mode 100644 index 000000000..1af028ea9 --- /dev/null +++ b/testing/emotion/APKBUILD @@ -0,0 +1,45 @@ +# Contributor: Natanael Copa <ncopa@alpinelinux.org> +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=emotion +pkgver=1.7.4 +pkgrel=0 +pkgdesc="Emotion, video and audio codec API" +url="http://trac.enlightenment.org/e/wiki/Emotion" +arch="all" +license="BSD" +depends= +depends_dev="ecore-dev evas-dev eet-dev eina-dev edje-dev eio-dev" +makedepends="$depends_dev" +install="" +subpackages="$pkgname-dev" +source="http://download.enlightenment.org/releases/emotion-$pkgver.tar.gz" + +_builddir="$srcdir"/emotion-$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 \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --localstatedir=/var \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + find "$pkgdir"/usr/lib/ -name '*.la' -delete +} + +md5sums="402e1da5f5281607585c860012200b49 emotion-1.7.4.tar.gz" |