From f48f6c82e23a3bacb8a0952c2d2cf9af1e6bf42d Mon Sep 17 00:00:00 2001 From: root Date: Wed, 21 Nov 2012 01:32:11 -0800 Subject: Wed Nov 21 01:32:09 PST 2012 --- extra/eio/PKGBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 extra/eio/PKGBUILD (limited to 'extra/eio') 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 +# Contributor: Gustavo Sverzut Barbieri + +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 +} -- cgit v1.2.3-54-g00ecf