blob: 4d7eade9ffb47c9e71f70fbb244e046f27dda88f (
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
51
52
53
54
55
56
57
58
|
# $Id: PKGBUILD 171861 2012-11-21 20:21:48Z ronald $
# Maintainer: Ronald van Haren <ronald@archlinux.org>
# Contributor: Gustavo Sverzut Barbieri <barbieri@gmail.com>
pkgname=edje
pkgver=1.7.1
pkgrel=2
pkgdesc="A graphical design and layout library based on Evas"
arch=('i686' 'x86_64')
url="http://www.enlightenment.org"
license=('BSD')
depends=('eina' 'ecore' 'evas' 'eio' 'lua' 'shared-mime-info' 'embryo')
optdepends=('python2: inkscape2edc')
install=edje.install
options=('!libtool' '!emptydirs')
source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz
changeset_76449.diff)
sha1sums=('65e983041fa4405f14c23239d35dcce65ac1bbe4'
'032b96634bdd6bacba0b2cec87d648f54f9ebc05')
build() {
cd $srcdir/$pkgname-$pkgver
patch -Np3 -i ${srcdir}/changeset_76449.diff
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}"
# python2 fix
sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' utils/inkscape2edc
./configure \
--prefix=/usr \
--disable-static \
--enable-ecore-imf \
--enable-eio \
--disable-sndfile \
--disable-remix \
--disable-vorbisenc \
--disable-alsa \
--disable-flac \
--disable-tests \
--disable-coverage \
--enable-amalgamation \
--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
}
|