summaryrefslogtreecommitdiff
path: root/extra/edje/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'extra/edje/PKGBUILD')
-rw-r--r--extra/edje/PKGBUILD58
1 files changed, 58 insertions, 0 deletions
diff --git a/extra/edje/PKGBUILD b/extra/edje/PKGBUILD
new file mode 100644
index 000000000..4d7eade9f
--- /dev/null
+++ b/extra/edje/PKGBUILD
@@ -0,0 +1,58 @@
+# $Id: PKGBUILD 171861 2012-11-21 20:21:48Z ronald $
+# Maintainer: Ronald van Haren <ronald@archlinux.org>
+# Contributor: Gustavo Sverzut Barbieri <barbieri@gmail.com>
+
+pkgname=edje
+pkgver=1.7.1
+pkgrel=2
+pkgdesc="A graphical design and layout library based on Evas"
+arch=('i686' 'x86_64')
+url="http://www.enlightenment.org"
+license=('BSD')
+depends=('eina' 'ecore' 'evas' 'eio' 'lua' 'shared-mime-info' 'embryo')
+optdepends=('python2: inkscape2edc')
+install=edje.install
+options=('!libtool' '!emptydirs')
+source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz
+ changeset_76449.diff)
+sha1sums=('65e983041fa4405f14c23239d35dcce65ac1bbe4'
+ '032b96634bdd6bacba0b2cec87d648f54f9ebc05')
+
+build() {
+ cd $srcdir/$pkgname-$pkgver
+
+ patch -Np3 -i ${srcdir}/changeset_76449.diff
+
+ 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}"
+
+ # python2 fix
+ sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' utils/inkscape2edc
+
+ ./configure \
+ --prefix=/usr \
+ --disable-static \
+ --enable-ecore-imf \
+ --enable-eio \
+ --disable-sndfile \
+ --disable-remix \
+ --disable-vorbisenc \
+ --disable-alsa \
+ --disable-flac \
+ --disable-tests \
+ --disable-coverage \
+ --enable-amalgamation \
+ --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
+}