blob: acb0ede90c6deb59192b9c376923284605c1e29b (
plain)
1 # Description: Data types library
2 # URL: http://www.enlightenment.org/
3 # Maintainer: Victor Martinez, pitillo at ono dot com
4 # Depends on:
5
6 name=eina
7 version=1.7.5
8 release=1
9 source=(http://download.enlightenment.org/releases/$name-$version.tar.gz)
10
11 build()
12 {
13 cd $name-$version
14 ./configure --prefix=/usr
15 make
16 make DESTDIR=$PKG install
17 rm -r $PKG/usr/share
18 }
|