wok rev 9788
efreet: fix last commit (wrong file copied)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Thu May 12 15:44:45 2011 +0200 (2011-05-12) |
parents | 3f1746026fcd |
children | 7fd6a3651947 |
files | efreet/receipt |
line diff
1.1 --- a/efreet/receipt Thu May 12 15:43:28 2011 +0200 1.2 +++ b/efreet/receipt Thu May 12 15:44:45 2011 +0200 1.3 @@ -1,19 +1,31 @@ 1.4 # SliTaz package receipt. 1.5 1.6 -PACKAGE="ecore-dev" 1.7 +PACKAGE="efreet" 1.8 VERSION="1.0.0" 1.9 -CATEGORY="development" 1.10 -SHORT_DESC="E17 core devel files." 1.11 +CATEGORY="base-system" 1.12 +SHORT_DESC="E17 implementation of several specifications from freedesktop.org." 1.13 MAINTAINER="pankso@slitaz.org" 1.14 -WANTED="ecore" 1.15 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.16 WEB_SITE="http://www.enlightenment.org/" 1.17 +WGET_URL="http://download.enlightenment.org/releases/$TARBALL" 1.18 + 1.19 +DEPENDS="eina eet ecore" 1.20 +BUILD_DEPENDS="eina-dev eet-dev ecore-dev" 1.21 + 1.22 +# Rules to configure and make the package. 1.23 +compile_rules() 1.24 +{ 1.25 + cd $src 1.26 + ./configure && make && make install 1.27 +} 1.28 1.29 # Rules to gen a SliTaz package suitable for Tazpkg. 1.30 genpkg_rules() 1.31 { 1.32 mkdir -p $fs/usr/lib 1.33 - cp -a $_pkg/usr/include $fs/usr 1.34 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 1.35 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 1.36 + cp -a $_pkg/usr/bin $fs/usr 1.37 + cp -a $_pkg/usr/share $fs/usr 1.38 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.39 + cp -a $_pkg/usr/lib/efreet $fs/usr/lib 1.40 } 1.41