wok-next rev 15097
stjerm-terminal: update bdeps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Aug 14 11:54:46 2013 +0000 (2013-08-14) |
parents | de5c76813d78 |
children | f4c4a3ce96cc |
files | spandsp-dev/receipt stjerm-terminal/receipt |
line diff
1.1 --- a/spandsp-dev/receipt Wed Aug 14 09:29:57 2013 +0000 1.2 +++ b/spandsp-dev/receipt Wed Aug 14 11:54:46 2013 +0000 1.3 @@ -5,13 +5,16 @@ 1.4 CATEGORY="development" 1.5 SHORT_DESC="library of DSP functions for telephony dev files." 1.6 MAINTAINER="pascal.bellard@slitaz.org" 1.7 +LICENSE="LGPL2.1" 1.8 WEB_SITE="http://www.soft-switch.org/" 1.9 WANTED="spandsp" 1.10 1.11 +DEPENDS="spandsp" 1.12 + 1.13 # Rules to gen a SliTaz package suitable for Tazpkg. 1.14 genpkg_rules() 1.15 { 1.16 mkdir -p $fs/usr/lib 1.17 - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 1.18 - cp -a $_pkg/usr/include $fs/usr 1.19 + cp -a $install/usr/lib/*.*a $fs/usr/lib 1.20 + cp -a $install/usr/include $fs/usr 1.21 }
2.1 --- a/stjerm-terminal/receipt Wed Aug 14 09:29:57 2013 +0000 2.2 +++ b/stjerm-terminal/receipt Wed Aug 14 11:54:46 2013 +0000 2.3 @@ -6,29 +6,31 @@ 2.4 CATEGORY="x-window" 2.5 SHORT_DESC="Stjerm is a quake-like terminal emulator. It's window is shown with a key shortcut." 2.6 MAINTAINER="mallory@sweetpeople.org" 2.7 -DEPENDS="vte" 2.8 -BUILD_DEPENDS="vte-dev" 2.9 +LICENSE="GPL2" 2.10 TARBALL="$SOURCE-$VERSION.tar.gz" 2.11 WEB_SITE="http://code.google.com/p/$PACKAGE/" 2.12 WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL" 2.13 2.14 +DEPENDS="vte" 2.15 +BUILD_DEPENDS="vte-dev glib-dev" 2.16 + 2.17 # Rules to configure and make the package. 2.18 compile_rules() 2.19 { 2.20 cd $src 2.21 - ./autogen.sh 2.22 + ./autogen.sh 2.23 ./configure \ 2.24 --prefix=/usr \ 2.25 --infodir=/usr/share/info \ 2.26 --mandir=/usr/share/man \ 2.27 $CONFIGURE_ARGS && 2.28 - make && make DESTDIR=$PWD/_pkg install 2.29 + make && make DESTDIR=$DESTDIR install 2.30 } 2.31 2.32 # Rules to gen a SliTaz package suitable for Tazpkg. 2.33 genpkg_rules() 2.34 { 2.35 mkdir -p $fs/usr 2.36 - cp -a $_pkg/usr/bin $fs/usr 2.37 + cp -a $install/usr/bin $fs/usr 2.38 } 2.39