wok-next diff minicom/receipt @ rev 18094
Up dev86 (0.16.21)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue May 26 15:17:08 2015 +0200 (2015-05-26) |
parents | b9cf3c10b92e |
children | 757d032c55c7 |
line diff
1.1 --- a/minicom/receipt Thu Mar 22 20:55:40 2012 +0100 1.2 +++ b/minicom/receipt Tue May 26 15:17:08 2015 +0200 1.3 @@ -5,13 +5,15 @@ 1.4 CATEGORY="development" 1.5 SHORT_DESC="menu driven communications program" 1.6 MAINTAINER="f.lombard@free.fr" 1.7 -DEPENDS="ncurses" 1.8 -BUILD_DEPENDS="ncurses-dev" 1.9 +LICENSE="GPL2" 1.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.11 WEB_SITE="http://alioth.debian.org/projects/minicom/" 1.12 WGET_URL="http://alioth.debian.org/frs/download.php/3195/$PACKAGE/$TARBALL" 1.13 CONFIG_FILES="/etc/minirc.dfl" 1.14 1.15 +DEPENDS="ncurses" 1.16 +BUILD_DEPENDS="ncurses-dev" 1.17 + 1.18 # Rules to configure and make the package. 1.19 compile_rules() 1.20 { 1.21 @@ -24,15 +26,14 @@ 1.22 --mandir=/usr/share/man \ 1.23 $CONFIGURE_ARGS && 1.24 make && 1.25 - make DESTDIR=$PWD/_pkg install 1.26 + make DESTDIR=$DESTDIR install 1.27 } 1.28 1.29 # Rules to gen a SliTaz package suitable for Tazpkg. 1.30 genpkg_rules() 1.31 { 1.32 mkdir -p $fs/usr 1.33 - cp -a $_pkg/usr/bin $fs/usr 1.34 + cp -a $install/usr/bin $fs/usr 1.35 mkdir -p $fs/etc 1.36 touch $fs$CONFIG_FILES 1.37 } 1.38 -