wok view rage/receipt @ rev 3040

Add keepassx password manager
author Rohit Joshi <jozee@slitaz.org>
date Tue May 12 13:20:03 2009 +0000 (2009-05-12)
parents 3f898e9b90bd
children 3a1e39f94f32
line source
1 # SliTaz package receipt.
3 PACKAGE="rage"
4 VERSION="40505"
5 CATEGORY="multimedia"
6 SHORT_DESC="E17 rage media center."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="eet evas ecore embryo edje emotion eina libcurl openssl"
9 BUILD_DEPENDS="eet-dev evas-dev ecore-dev embryo-dev edje-dev emotion-dev \
10 eina-dev curl-dev openssl-dev"
11 WEB_SITE="http://www.enlightenment.org/"
12 TAGS="mp3 ogg video e17"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 [ -d "$PACKAGE-$VERSION" ] && rm -rf $PACKAGE-$VERSION
18 svn co http://svn.enlightenment.org/svn/e/trunk/$PACKAGE \
19 -r $VERSION $PACKAGE-$VERSION
20 cd $src
21 ./autogen.sh \
22 --prefix=/usr \
23 $CONFIGURE_ARGS &&
24 make &&
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/share/doc/rage
32 cp -a $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/usr/share $fs/usr
34 cp $src/README $fs/usr/share/doc/rage
35 cat > $fs/usr/share/rage/example.volumes << EOT
36 /home/user/Images
37 /home/user/Music
38 /home/user/Videos
39 EOT
40 }