wok view miau/receipt @ rev 24173

updated outguess again (0.2 -> 0.4)
author Hans-G?nter Theisgen
date Wed Dec 29 09:24:42 2021 +0100 (2021-12-29)
parents 3765f181a6d5
children 370da83187ab
line source
1 # SliTaz package receipt.
3 PACKAGE="miau"
4 VERSION="0.6.6"
5 CATEGORY="network"
6 SHORT_DESC="Another IRC-bouncer/proxy."
7 MAINTAINER="christophe.paris@free.fr"
8 LICENSE="GPL2"
9 WEB_SITE="http://miau.sourceforge.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://downloads.sourceforge.net/miau/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 --docdir=/usr/share/doc \
22 $CONFIGURE_ARGS &&
23 make -j 1 &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/share $fs/usr
34 }