summaryrefslogtreecommitdiff
path: root/extra/eina
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-11-27 12:52:56 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-11-27 12:52:56 -0300
commit78e579460b6f67a777a72232903eb7eaf84c945f (patch)
tree13403c8933fd3ea439b3d5734a5a3d0d7b04e386 /extra/eina
parent45109aea7693acc9077824a431e17110d21ed6b3 (diff)
parentc008601effc878e60852f7928ddadcf5a16eb851 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/spacefm/PKGBUILD extra/eina/PKGBUILD extra/kdeplasma-addons/PKGBUILD
Diffstat (limited to 'extra/eina')
-rw-r--r--extra/eina/PKGBUILD31
1 files changed, 25 insertions, 6 deletions
diff --git a/extra/eina/PKGBUILD b/extra/eina/PKGBUILD
index 98f556bd0..a490cc063 100644
--- a/extra/eina/PKGBUILD
+++ b/extra/eina/PKGBUILD
@@ -1,18 +1,18 @@
-# $Id: PKGBUILD 171651 2012-11-20 21:46:00Z ronald $
+# $Id: PKGBUILD 171980 2012-11-25 21:13:37Z ronald $
# Maintainer: Ronald van Haren <ronald.archlinux.org>
# Contributor: Ronald van Haren <ronald.archlinux.org>
pkgname=eina
-pkgver=1.7.1
+pkgver=1.7.2
pkgrel=1
-pkgdesc="E17 file chunk reading/writing library"
+pkgdesc="A core data structure and common utility library"
arch=('i686' 'x86_64' 'mips64el')
url="http://www.enlightenment.org"
license=('LGPL2.1')
depends=('glibc')
options=('!libtool' '!emptydirs')
-source=(http://download.enlightenment.org/releases/eina-1.7.1.tar.gz)
-sha1sums=('6d5d7344aed93a71edf9c7cccf3d3c8bc28043a7')
+source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz)
+sha1sums=('cb56cf9ec28d7cb42ca168d9e261c5f580986c29')
build() {
cd $srcdir/$pkgname-$pkgver
@@ -21,7 +21,26 @@ build() {
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 --enable-amalgamation
+ ./configure --prefix=/usr --enable-amalgamation \
+ --with-internal-maximum-log-level=3 \
+ --disable-static \
+ --disable-benchmark \
+ --disable-install-examples \
+ --disable-build-examples \
+ --disable-doc \
+ --disable-tests \
+ --enable-default-mempool \
+ --enable-mempool-chained-pool \
+ --enable-mempool-pass-through \
+ --disable-mempool-buddy \
+ --disable-mempool-ememoa-fixed \
+ --disable-mempool-ememoa-unknown \
+ --disable-mempool-fixed-bitmap \
+ --disable-assert \
+ --disable-ememoa
+
+# --disable-mempool-one-big ## this option causes a segfault in 1.7.2
+
make
}