wok view rhapsody/receipt @ rev 9470

Remove some uneeded strips (thoses ones are handled by Tazwok)
author Antoine Bodin <gokhlayeh@slitaz.org>
date Mon Apr 04 01:29:52 2011 +0200 (2011-04-04)
parents 8be66f03fbd2
children 9891e0959aef
line source
1 # SliTaz package receipt.
3 PACKAGE="rhapsody"
4 VERSION="0.28b"
5 CATEGORY="network"
6 SHORT_DESC="Text mode and easy to use IRC client."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="ncurses"
9 BUILD_DEPENDS="ncurses-dev"
10 TARBALL="rhapsody_0.28b.tgz"
11 WEB_SITE="http://rhapsody.sourceforge.net/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 TAGS="irc"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure -i /usr/bin -d /usr/share/doc/rhapsody &&
20 make clean &&
21 make &&
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin
28 cp -a $src/rhapsody $fs/usr/bin
29 # Doc stuff.
30 mkdir -p $fs/usr/share/doc/rhapsody
31 cp -a $src/help $fs/usr/share/doc/rhapsody
32 chmod 644 $fs/usr/share/doc/rhapsody/help/*
33 }