# HG changeset patch # User Pascal Bellard # Date 1226150806 0 # Node ID 3f1a7134d9e30cf77270f2cef854552d8781f769 # Parent d732948e6b0be70e2731e336a6dc3af17c90fc82 Add minicom (from Frederic Lombard) diff -r d732948e6b0b -r 3f1a7134d9e3 minicom/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/minicom/receipt Sat Nov 08 13:26:46 2008 +0000 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="minicom" +VERSION="2.3" +CATEGORY="development" +SHORT_DESC="menu driven communications program" +MAINTAINER="f.lombard@free.fr" +DEPENDS="ncurses" +BUILD_DEPENDS="ncurses-dev" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://alioth.debian.org/projects/minicom/" +WGET_URL="http://alioth.debian.org/frs/download.php/2332/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr --infodir=/usr/share/info \ + --mandir=/usr/share/man $CONFIGURE_ARGS && + make && + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr + strip -s $fs/usr/bin/* +} +