diff options
Diffstat (limited to 'extra/emotion/PKGBUILD')
-rw-r--r-- | extra/emotion/PKGBUILD | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/extra/emotion/PKGBUILD b/extra/emotion/PKGBUILD new file mode 100644 index 000000000..3fcaa9d52 --- /dev/null +++ b/extra/emotion/PKGBUILD @@ -0,0 +1,43 @@ +# $Id: PKGBUILD 171660 2012-11-20 21:55:53Z ronald $ +# Maintainer: Ronald van Haren <ronald@archlinux.org> +# Contributor: Gustavo Sverzut Barbieri <barbieri@gmail.com> + +pkgname=emotion +pkgver=1.7.1 +pkgrel=1 +pkgdesc="Library to easily integrate media playback into EFL applications" +arch=('i686' 'x86_64') +url="http://www.enlightenment.org" +license=('BSD') +depends=('gstreamer0.10' 'edje' 'eeze') +options=('!libtool' '!emptydirs') +source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz) +sha1sums=('8d3dd7aa4cd72f9c9c1113bf92f595e4f5fdbf53') + +build() { + cd $srcdir/$pkgname-$pkgver + + export CFLAGS="-fvisibility=hidden -ffunction-sections -fdata-sections ${CFLAGS}" + export CXXFLAGS="-fvisibility=hidden -ffunction-sections -fdata-sections ${CXXFLAGS}" + export LDFLAGS="-fvisibility=hidden -ffunction-sections -fdata-sections -Wl,--gc-sections -Wl,--as-needed ${LDFLAGS}" + + ./configure \ + --prefix=/usr \ + --disable-static \ + --enable-generic \ + --enable-gstreamer \ + --disable-generic-vlc \ + --disable-xine \ + --disable-install-examples \ + --disable-doc + make +} + +package(){ + cd $srcdir/$pkgname-$pkgver + make DESTDIR=$pkgdir install + + # install license files + install -Dm644 $srcdir/$pkgname-$pkgver/COPYING \ + $pkgdir/usr/share/licenses/$pkgname/COPYING +} |