blob: 622fc788f43486506213f9ab2567fedf7ee28720 (
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
59
60
61
62
63
64
65
66
67
68
69
70
|
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=evas
pkgver=1.7.4
pkgrel=1
pkgdesc="hardware-accelerated retained canvas API"
url="http://trac.enlightenment.org/e/wiki/Evas"
arch="all"
license="BSD"
depends=
depends_dev="
eet-dev
eina-dev
fontconfig-dev
freetype-dev
fribidi-dev
harfbuzz-dev
"
makedepends="$depends_dev
giflib-dev
libice-dev
libjpeg-turbo-dev
libpng-dev
librsvg-dev
libx11-dev
libxcb-dev
libxrender-dev
mesa-dev
sdl-dev
tiff-dev
xcb-util-image-dev
"
install=""
subpackages="$pkgname-dev"
source="http://download.enlightenment.org/releases/evas-$pkgver.tar.gz
xcb-outbuf.patch"
_builddir="$srcdir"/evas-$pkgver
prepare() {
local i
cd "$_builddir"
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
}
build() {
cd "$_builddir"
./configure --prefix=/usr \
--enable-gl-xlib \
--enable-software-16-x11 \
--enable-software-xcb \
--enable-pthreads \
--enable-async-events \
--enable-async-preload \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
find "$pkgdir" -name *.la -print | xargs rm
}
md5sums="33a70651fd3d73c3d928b9c5362d5aac evas-1.7.4.tar.gz
2e9e9067a48f0bcce17a14d8292e0cf7 xcb-outbuf.patch"
|