# HG changeset patch # User Xander Ziiryanoff # Date 1405783679 -7200 # Node ID 206afe8cf521197edeb21fe35e3b7266f6406758 # Parent 1d0a6f007a2f5d031643031785c9553651048a6c Add dooble (Qt4 web browser) diff -r 1d0a6f007a2f -r 206afe8cf521 dooble/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dooble/receipt Sat Jul 19 17:27:59 2014 +0200 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="dooble" +VERSION="1.48" +CATEGORY="web" +SHORT_DESC="Qt Webkit-based browser with built-in terminal" +MAINTAINER="psychomaniak@xakep.ru" +LICENSE="BSD" +WEB_SITE="http://dooble.sourceforge.net" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="$SF_MIRROR/$PACKAGE/files/Dooble.d.tar.gz" + +DEPENDS="libQtCore libQtDBus libQtGui libQtNetwork libQtScript libQtSql \ +libQtXml libQtWebKit libspoton gst-plugins-base" +BUILD_DEPENDS="wget cacerts Qt4-dev qmake libgcrypt-dev sqlite-dev" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src/trunk/browser + qmake dooble.pro + make && make INSTALL_ROOT=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs +} diff -r 1d0a6f007a2f -r 206afe8cf521 libspoton/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libspoton/receipt Sat Jul 19 17:27:59 2014 +0200 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="libspoton" +VERSION="0.09.08" +CATEGORY="web" +SHORT_DESC="library required by dooble browser" +MAINTAINER="psychomaniak@xakep.ru" +LICENSE="BSD" +WEB_SITE="http://sourceforge.net/projects/spot-on/" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="$SF_MIRROR/spot-on/files/Spot-On.d.tar.gz" + +DEPENDS="sqlite libgcrypt" +BUILD_DEPENDS="libgcrypt-dev sqlite-dev" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src/libSpotOn + make + mkdir -p $DESTDIR/usr/lib + cp -f libspoton.so $DESTDIR/usr/lib +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs +}