wok annotate amsn/receipt @ rev 2353

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