blob: 0c4bd7ab9e494f8a6937ac3512e8161196aa4a1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# $Id: PKGBUILD 174824 2013-01-07 19:39:59Z ronald $
# Maintainer: Ronald van Haren <ronald.archlinux.org>
# Contributor: Ronald van Haren <ronald.archlinux.org>
pkgname=eina
pkgver=1.7.5
pkgrel=1
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/$pkgname-$pkgver.tar.gz)
sha1sums=('a12496ac49883f26e94259c853f84badf9f2e6ca')
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 --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
}
package(){
cd $srcdir/$pkgname-$pkgver
make DESTDIR=$pkgdir install
}
|