# HG changeset patch # User Aleksej Bobylev # Date 1362417420 0 # Node ID 23fd8efda6fdec1405e410e6ef8a5cf9a415e1f0 # Parent a91a71d57fc82d9d6092ceb9e24139a28e8e243a Add libnotify3; add varka & marlin (currently broken) diff -r a91a71d57fc8 -r 23fd8efda6fd libnotify3-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libnotify3-dev/receipt Mon Mar 04 17:17:00 2013 +0000 @@ -0,0 +1,21 @@ +# SliTaz package receipt. + +PACKAGE="libnotify3-dev" +VERSION="0.7.5" +CATEGORY="utilities" +SHORT_DESC="Development files for libnotify (GTK+3)" +MAINTAINER="al.bobylev@gmail.com" +WEB_SITE="http://www.galago-project.org/" + +DEPENDS="libnotify3" +WANTED="libnotify3" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/lib/*.*a $fs/usr/lib +} + diff -r a91a71d57fc8 -r 23fd8efda6fd libnotify3/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libnotify3/receipt Mon Mar 04 17:17:00 2013 +0000 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="libnotify3" +VERSION="0.7.5" +CATEGORY="utilities" +SHORT_DESC="Sends desktop notifications to a notification daemon (GTK+3)" +MAINTAINER="al.bobylev@gmail.com" +SOURCE="libnotify" +HI_VERSION=$(echo $VERSION | cut -d. -f1,2) +TARBALL="$SOURCE-$VERSION.tar.xz" +WEB_SITE="http://developer-next.gnome.org/libnotify/" +WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/$SOURCE/$HI_VERSION/$TARBALL" + +DEPENDS="gdk-pixbuf" +BUILD_DEPENDS="gtk+3-dev" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure $CONFIGURE_ARGS && + make && + make DESTDIR=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib +} diff -r a91a71d57fc8 -r 23fd8efda6fd marlin/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/marlin/receipt Mon Mar 04 17:17:00 2013 +0000 @@ -0,0 +1,34 @@ +# SliTaz package receipt. + +PACKAGE="marlin" +VERSION="0.5" +CATEGORY="utilities" +SHORT_DESC="A sleek and fast GTK3 file manager" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="GNU GPL v2, GNU GPL v3" +WEB_SITE="https://launchpad.net/marlin" +BRANCH="879" +TARBALL="$PACKAGE-$BRANCH.tar.bz2" +WGET_URL="bzr|lp:marlin" + +DEPENDS="" +BUILD_DEPENDS="bazaar cmake vala varka-dev gtk+3-dev libgee-dev sqlite-dev \ +dbus-glib-dev libnotify3-dev" + +# Rules to configure and make the package. +compile_rules() +{ +# export LDFLAGS="$LDFLAGS$(pkg-config --libs gee-1.0)" + mkdir build + cd build + cmake .. + make + +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + : + #cp -a $install/* $fs +} diff -r a91a71d57fc8 -r 23fd8efda6fd varka-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/varka-dev/receipt Mon Mar 04 17:17:00 2013 +0000 @@ -0,0 +1,21 @@ +# SliTaz package receipt. + +PACKAGE="varka-dev" +VERSION="0.1" +CATEGORY="development" +SHORT_DESC="Development files for varka" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="GNU GPL v3" +WEB_SITE="https://launchpad.net/varka" + +WANTED="varka" +DEPENDS="varka" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/share $fs/usr +} diff -r a91a71d57fc8 -r 23fd8efda6fd varka/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/varka/receipt Mon Mar 04 17:17:00 2013 +0000 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="varka" +VERSION="0.1" +CATEGORY="development" +SHORT_DESC="A library on top of gtk to build applications" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="GNU GPL v3" +WEB_SITE="https://launchpad.net/varka" +BRANCH="15" +TARBALL="$PACKAGE-$BRANCH.tar.bz2" +WGET_URL="bzr|lp:varka" + +DEPENDS="gtk+3" +BUILD_DEPENDS="bazaar cmake gobject-introspection-dev gtk+3-dev libgio-dev vala" + +# Rules to configure and make the package. +compile_rules() +{ + export LDFLAGS="$LDFLAGS $(pkg-config --libs gio-unix-2.0 gmodule-2.0)" + mkdir build && cd build + cmake .. -DCMAKE_INSTALL_PREFIX=/usr && \ + make && \ + make DESTDIR=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/lib/*.so* $fs/usr/lib +}