# HG changeset patch # User Pascal Bellard # Date 1376481286 0 # Node ID 0d6fc7e516c3ff951c104ce6ef4cec41605ff9ae # Parent de5c76813d787afc40085cdac71a69e2e311b8c9 stjerm-terminal: update bdeps diff -r de5c76813d78 -r 0d6fc7e516c3 spandsp-dev/receipt --- a/spandsp-dev/receipt Wed Aug 14 09:29:57 2013 +0000 +++ b/spandsp-dev/receipt Wed Aug 14 11:54:46 2013 +0000 @@ -5,13 +5,16 @@ CATEGORY="development" SHORT_DESC="library of DSP functions for telephony dev files." MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="LGPL2.1" WEB_SITE="http://www.soft-switch.org/" WANTED="spandsp" +DEPENDS="spandsp" + # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $_pkg/usr/lib/*.*a $fs/usr/lib - cp -a $_pkg/usr/include $fs/usr + cp -a $install/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/include $fs/usr } diff -r de5c76813d78 -r 0d6fc7e516c3 stjerm-terminal/receipt --- a/stjerm-terminal/receipt Wed Aug 14 09:29:57 2013 +0000 +++ b/stjerm-terminal/receipt Wed Aug 14 11:54:46 2013 +0000 @@ -6,29 +6,31 @@ CATEGORY="x-window" SHORT_DESC="Stjerm is a quake-like terminal emulator. It's window is shown with a key shortcut." MAINTAINER="mallory@sweetpeople.org" -DEPENDS="vte" -BUILD_DEPENDS="vte-dev" +LICENSE="GPL2" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://code.google.com/p/$PACKAGE/" WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL" +DEPENDS="vte" +BUILD_DEPENDS="vte-dev glib-dev" + # Rules to configure and make the package. compile_rules() { cd $src - ./autogen.sh + ./autogen.sh ./configure \ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man \ $CONFIGURE_ARGS && - make && make DESTDIR=$PWD/_pkg install + make && make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr - cp -a $_pkg/usr/bin $fs/usr + cp -a $install/usr/bin $fs/usr }