wok view miau/receipt @ rev 14991

Up: expedite (1.7.8)
author Dominique Corbex <domcox@slitaz.org>
date Fri Aug 09 22:18:24 2013 +0200 (2013-08-09)
parents 5cca1d5310fc
children 3765f181a6d5
line source
1 # SliTaz package receipt.
3 PACKAGE="miau"
4 VERSION="0.6.5"
5 CATEGORY="network"
6 SHORT_DESC="Another IRC-bouncer/proxy."
7 MAINTAINER="christophe.paris@free.fr"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://miau.sourceforge.net/"
10 WGET_URL="http://downloads.sourceforge.net/miau/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure \
17 --prefix=/usr \
18 --infodir=/usr/share/info \
19 --mandir=/usr/share/man \
20 --docdir=/usr/share/doc \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/usr/bin $fs/usr
31 cp -a $_pkg/usr/share $fs/usr
32 }