wok view elementary/receipt @ rev 8187

imported patch toolchain/glibc-extra-samba.patch
author Antoine Bodin <gokhlayeh@slitaz.org>
date Thu Jan 27 00:20:50 2011 +0100 (2011-01-27)
parents 6e90579538d6
children 089973189c2b
line source
1 # SliTaz package receipt.
3 PACKAGE="elementary"
4 VERSION="0.6.0.063"
5 CATEGORY="x-window"
6 SHORT_DESC="Widget set based on EFL for mobile touch-screen devices."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="cairo evas ecore embryo edje libelementary xorg-libXp xorg-libXss \
9 edbus efreet libtasn1"
10 BUILD_DEPENDS="cairo-dev evas-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.enlightenment.org/"
13 WGET_URL="http://download.enlightenment.org/snapshots/2009-12-02/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/share $fs/usr
33 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
34 cp -a $_pkg/usr/lib/elementary $fs/usr/lib
35 }