wok-next diff snownews/receipt @ rev 16094
ffmpeg-compat: typo in post_remove()
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Mar 16 14:51:45 2014 +0000 (2014-03-16) |
parents | a57fbcee7495 |
children | 3ba8d2c9720d |
line diff
1.1 --- a/snownews/receipt Sat Apr 28 19:29:22 2012 +0200 1.2 +++ b/snownews/receipt Sun Mar 16 14:51:45 2014 +0000 1.3 @@ -5,26 +5,28 @@ 1.4 CATEGORY="network" 1.5 SHORT_DESC="Text mode RSS newsreader." 1.6 MAINTAINER="paul@slitaz.org" 1.7 +LICENSE="GPL2" 1.8 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.9 +WEB_SITE="http://kiza.kcore.de/software/snownews/index.en" 1.10 +WGET_URL="https://kiza.kcore.de/software/snownews/download/$TARBALL" 1.11 + 1.12 DEPENDS="libxml2 ncurses zlib libcrypto" 1.13 BUILD_DEPENDS="zlib-dev libxml2-dev ncurses-dev gettext perl \ 1.14 openssl-dev acl libcroco wget" 1.15 -TARBALL="$PACKAGE-$VERSION.tar.gz" 1.16 -WEB_SITE="http://kiza.kcore.de/software/snownews/index.en" 1.17 -WGET_URL="https://kiza.kcore.de/software/snownews/download/$TARBALL" 1.18 1.19 # Rules to configure and make the package. 1.20 compile_rules() 1.21 { 1.22 cd $src 1.23 ./configure --prefix=/usr && 1.24 - make && make DESTDIR=$PWD/_pkg install 1.25 + make && make DESTDIR=$DESTDIR install 1.26 } 1.27 1.28 # Rules to gen a SliTaz package suitable for Tazpkg. 1.29 genpkg_rules() 1.30 { 1.31 mkdir -p $fs/usr/share 1.32 - cp -a $_pkg/usr/bin $fs/usr 1.33 - cp -a $_pkg/usr/share/locale $fs/usr/share 1.34 + cp -a $install/usr/bin $fs/usr 1.35 + cp -a $install/usr/share/locale $fs/usr/share 1.36 } 1.37