wok view irssi/receipt @ rev 1113

iw: put all file a a real dir so we can clean
author Christophe Lincoln <pankso@slitaz.org>
date Sat Jul 19 21:19:53 2008 +0200 (2008-07-19)
parents
children 487771e09c89
line source
1 # SliTaz package receipt.
3 PACKAGE="irssi"
4 VERSION="0.8.12"
5 CATEGORY="network"
6 SHORT_DESC="Text-base IRC client"
7 MAINTAINER="mallory@sweetpeople.org"
8 DEPENDS=""
9 BUILD_DEPENDS="glib-dev ncurses-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://irssi.org/"
12 WGET_URL="http://irssi.org/files/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr
20 make
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin
28 cp -a $_pkg/usr/bin/irssi $fs/usr/bin/irssi
29 strip -s $fs/usr/bin/*
31 }