wok view amsn/receipt @ rev 2381

rt2860sta: remove potential warning for tazpkg
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 08 12:57:59 2009 +0000 (2009-03-08)
parents 4c1f13f57d9b
children 7a436db659a4
line source
1 # SliTaz package receipt.
3 PACKAGE="amsn"
4 VERSION="0.97.2"
5 CATEGORY="network"
6 SHORT_DESC="Alvaro's Messenger"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="tk tls"
9 BUILD_DEPENDS="tcl-dev tk-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://amsn-project.net/"
12 WGET_URL="http://mirror.pimentvert.com/sources/amsn/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr \
20 --with-tcl=/usr/lib $CONFIGURE_ARGS && \
21 make -j4 && \
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/share $fs/usr
31 }