20 lines
516 B
Plaintext
20 lines
516 B
Plaintext
|
# Description: Small archiving library for use with EFL.
|
||
|
# URL: http://www.enlightenment.org/
|
||
|
# Maintainer: Victor Martinez, pitillo at ono dot com
|
||
|
# Depends on: xorg-libxext xorg-libsm giflib libpng libtiff freetype eina
|
||
|
|
||
|
name=eet
|
||
|
version=1.7.5
|
||
|
release=1
|
||
|
source=(http://download.enlightenment.org/releases/$name-$version.tar.gz)
|
||
|
|
||
|
build()
|
||
|
{
|
||
|
cd $name-$version
|
||
|
./configure --prefix=/usr \
|
||
|
--disable-install-examples
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
rm -r $PKG/usr/share
|
||
|
}
|