From 22a8ad3e3b379755b324575f3230132396508752 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Sun, 23 Dec 2012 12:41:57 +0000 Subject: testing/emotion: new aport Emotion, video and audio codec API http://trac.enlightenment.org/e/wiki/Emotion --- testing/emotion/APKBUILD | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 testing/emotion/APKBUILD 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 +# Maintainer: Natanael Copa +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" -- cgit v1.2.3