wok annotate efreet/receipt @ 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 641a94f7ad29
rev   line source
pankso@140 1 # SliTaz package receipt.
pankso@140 2
pankso@9788 3 PACKAGE="efreet"
gokhlayeh@8505 4 VERSION="1.0.0"
pankso@9788 5 CATEGORY="base-system"
pankso@9788 6 SHORT_DESC="E17 implementation of several specifications from freedesktop.org."
pankso@140 7 MAINTAINER="pankso@slitaz.org"
pankso@9788 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@140 9 WEB_SITE="http://www.enlightenment.org/"
pankso@9788 10 WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
pankso@9788 11
pankso@9788 12 DEPENDS="eina eet ecore"
pankso@9788 13 BUILD_DEPENDS="eina-dev eet-dev ecore-dev"
pankso@9788 14
pankso@9788 15 # Rules to configure and make the package.
pankso@9788 16 compile_rules()
pankso@9788 17 {
pankso@9788 18 cd $src
pankso@9788 19 ./configure && make && make install
pankso@9788 20 }
pankso@140 21
pankso@140 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@140 23 genpkg_rules()
pankso@140 24 {
pankso@140 25 mkdir -p $fs/usr/lib
pankso@9788 26 cp -a $_pkg/usr/bin $fs/usr
pankso@9788 27 cp -a $_pkg/usr/share $fs/usr
pankso@9788 28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@9788 29 cp -a $_pkg/usr/lib/efreet $fs/usr/lib
pankso@140 30 }
pankso@140 31