wok annotate edje/receipt @ rev 9044

atm-tools: need make -j1
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 04 08:49:41 2011 +0100 (2011-03-04)
parents b68b4f934ba7
children 934feaca597b
rev   line source
pankso@140 1 # SliTaz package receipt.
pankso@140 2
pankso@140 3 PACKAGE="edje"
gokhlayeh@8505 4 VERSION="1.0.0"
pankso@211 5 CATEGORY="x-window"
pankso@140 6 SHORT_DESC="E17 libs."
pankso@140 7 MAINTAINER="pankso@slitaz.org"
gokhlayeh@8505 8 DEPENDS="embryo ecore lua"
gokhlayeh@8505 9 BUILD_DEPENDS=""
pankso@2023 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 --enable-amalgamation && \
gokhlayeh@8505 19 make && make install
pankso@140 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@140 26 cp -a $_pkg/usr/bin $fs/usr
pankso@140 27 cp -a $_pkg/usr/share $fs/usr
pankso@140 28 chmod 755 $fs/usr/bin/*
pankso@140 29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@140 30 }
pankso@140 31