summaryrefslogtreecommitdiff
path: root/extra/eeze
diff options
context:
space:
mode:
authorJoshua I. Haase H. (xihh) <hahj87@gmail.com>2012-12-04 20:19:54 -0600
committerJoshua I. Haase H. (xihh) <hahj87@gmail.com>2012-12-04 20:19:54 -0600
commit5b773bfc871ccd0dc540942508e7480c1cd63df2 (patch)
tree432ab7299f728cd5f078cd3e2bfa4f92e8d43487 /extra/eeze
parent0cb1158276158c1c2f4bef15c278ffcaf8859172 (diff)
parent1d3002e46bb10b50ac35a99b6d2e672cb2c4b2f9 (diff)
Merge branch 'master' of gitpar:abslibre-mips64el
Conflicts: extra/seahorse/PKGBUILD
Diffstat (limited to 'extra/eeze')
-rw-r--r--extra/eeze/PKGBUILD39
1 files changed, 39 insertions, 0 deletions
diff --git a/extra/eeze/PKGBUILD b/extra/eeze/PKGBUILD
new file mode 100644
index 000000000..0e47a745d
--- /dev/null
+++ b/extra/eeze/PKGBUILD
@@ -0,0 +1,39 @@
+# $Id: PKGBUILD 171987 2012-11-25 21:17:34Z ronald $
+# Maintainer: Ronald van Haren <ronald@archlinux.org>
+# Contributor: Gustavo Sverzut Barbieri <barbieri@gmail.com>
+
+pkgname=eeze
+pkgver=1.7.2
+pkgrel=1
+pkgdesc="Manipulate devices using udev and sysfs"
+arch=('i686' 'x86_64' 'mips64el')
+url="http://www.enlightenment.org"
+license=('BSD')
+depends=('ecore' 'eina' 'udev')
+options=('!libtool' '!emptydirs')
+source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz)
+sha1sums=('6d5562116c143841485c51278064b772d79bdb27')
+
+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 \
+ --disable-tests \
+ --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
+}