wok view edje/receipt @ rev 1371

Add jack-audio-connection-kit-dev
author Allan Pinto <allan316@gmail.com>
date Thu Sep 11 19:07:18 2008 +0000 (2008-09-11)
parents 5d91cb5a0c63
children 6a6ba65f2ad7
line source
1 # SliTaz package receipt.
3 PACKAGE="edje"
4 VERSION="0.5.0.042"
5 CATEGORY="x-window"
6 SHORT_DESC="E17 libs."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="eet evas ecore embryo"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.enlightenment.org/"
11 WGET_URL="http://download.enlightenment.org/snapshots/2008-01-25/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --mandir=/usr/share/man $CONFIGURE_ARGS
19 make
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/bin $fs/usr
28 cp -a $_pkg/usr/share $fs/usr
29 chmod 755 $fs/usr/bin/*
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 strip -s $fs/usr/bin/* 2>/dev/null
32 strip --strip-unneeded $fs/usr/lib/* 2>/dev/null
33 }