wok view rhapsody/receipt @ rev 15601

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Dec 05 20:23:08 2013 +0000 (2013-12-05)
parents 9891e0959aef
children 3ba8d2c9720d
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 LICENSE="GPL2"
9 TARBALL="rhapsody_0.28b.tgz"
10 WEB_SITE="http://rhapsody.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 TAGS="irc"
14 DEPENDS="ncurses"
15 BUILD_DEPENDS="ncurses-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure -i /usr/bin -d /usr/share/doc/rhapsody &&
22 make clean &&
23 make
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/bin
30 cp -a $src/rhapsody $fs/usr/bin
31 # Doc stuff.
32 mkdir -p $fs/usr/share/doc/rhapsody
33 cp -a $src/help $fs/usr/share/doc/rhapsody
34 chmod 644 $fs/usr/share/doc/rhapsody/help/*
35 }