summaryrefslogtreecommitdiff
path: root/extra/eio/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'extra/eio/PKGBUILD')
-rw-r--r--extra/eio/PKGBUILD42
1 files changed, 42 insertions, 0 deletions
diff --git a/extra/eio/PKGBUILD b/extra/eio/PKGBUILD
new file mode 100644
index 000000000..a2da1b33b
--- /dev/null
+++ b/extra/eio/PKGBUILD
@@ -0,0 +1,42 @@
+# $Id: PKGBUILD 171656 2012-11-20 21:53:07Z ronald $
+# Maintainer: Ronald van Haren <ronald@archlinux.org>
+# Contributor: Gustavo Sverzut Barbieri <barbieri@gmail.com>
+
+pkgname=eio
+pkgver=1.7.1
+pkgrel=1
+pkgdesc="Async IO library using Ecore"
+arch=('i686' 'x86_64')
+url="http://www.enlightenment.org"
+license=('BSD')
+depends=('ecore')
+options=('!libtool' '!emptydirs')
+source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz)
+sha1sums=('ae9d1760c417e37d3df65181df532daa81e51281')
+
+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-posix-threads \
+ --disable-debug-threads \
+ --enable-inotify \
+ --disable-install-examples \
+ --disable-doc
+ make
+}
+
+package(){
+ cd $pkgname-$pkgver
+ make DESTDIR=$pkgdir install
+
+ # install license files
+ install -Dm644 $srcdir/$pkgname-$pkgver/COPYING \
+ $pkgdir/usr/share/licenses/$pkgname/COPYING
+}