wok annotate efreet/receipt @ rev 9539

Add setuptools to python-webob build depends.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Apr 08 13:48:25 2011 +0000 (2011-04-08)
parents 85cd798d6997
children 3f1746026fcd
rev   line source
pankso@140 1 # SliTaz package receipt.
pankso@140 2
pankso@140 3 PACKAGE="efreet"
gokhlayeh@8505 4 VERSION="1.0.0"
gokhlayeh@8505 5 CATEGORY="base-system"
pankso@2917 6 SHORT_DESC="E17 implementation of several specifications from freedesktop.org."
pankso@140 7 MAINTAINER="pankso@slitaz.org"
gokhlayeh@8505 8 DEPENDS="eina ecore"
gokhlayeh@8505 9 BUILD_DEPENDS=""
pankso@2024 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@140 11 WEB_SITE="http://www.enlightenment.org/"
gokhlayeh@8505 12 WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
pankso@140 13
pankso@140 14 # Rules to configure and make the package.
pankso@140 15 compile_rules()
pankso@140 16 {
pankso@140 17 cd $src
gokhlayeh@8505 18 ./configure && make && make install
pankso@140 19 }
pankso@140 20
pankso@140 21 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@140 22 genpkg_rules()
pankso@140 23 {
pankso@140 24 mkdir -p $fs/usr/lib
pankso@140 25 cp -a $_pkg/usr/bin $fs/usr
pankso@140 26 cp -a $_pkg/usr/share $fs/usr
pankso@140 27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
gokhlayeh@8519 28 cp -a $_pkg/usr/lib/efreet $fs/usr/lib
pankso@140 29 }
pankso@140 30