wok view ewl/receipt @ rev 8552

imported patch get/ffmpeg-svn
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sun Feb 13 22:57:56 2011 +0100 (2011-02-13)
parents 3a36f16a9f19
children
line source
1 # SliTaz package receipt.
3 PACKAGE="ewl"
4 VERSION="42530"
5 CATEGORY="x-window"
6 SHORT_DESC="The Enlightened Widget Library (E17)."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="jpeg ecore eet evas edje efreet emotion libcurl openssl \
9 libpng xorg-libXss libidn libcrypto glib xorg-libXp"
10 BUILD_DEPENDS="cvs subversion eet-dev evas-dev ecore-dev efreet-dev efreet \
11 emotion emotion-dev"
12 WEB_SITE="http://www.enlightenment.org/"
13 WGET_URL="subversion|http://svn.enlightenment.org/svn/e/trunk/$PACKAGE"
14 BRANCH="$VERSION"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./autogen.sh \
21 --prefix=/usr \
22 --sysconfdir=/etc \
23 $CONFIGURE_ARGS &&
24 make -j 4 &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $_pkg/etc $fs
33 cp -a $_pkg/usr/bin $fs/usr
34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
35 cp -a $_pkg/usr/lib/ewl $fs/usr/lib
36 rm $fs/usr/lib/ewl/*/*.*a
37 cp -a $_pkg/usr/share $fs/usr
38 }