# HG changeset patch # User Hans-G?nter Theisgen # Date 1612023977 -3600 # Node ID c58748aa5abf90e114bc3c0a8e945048dd4ed67a # Parent 3c371525f78b59a1e733b248befde06eda05fba3 created recipes for diffuse and diffuse-lang diff -r 3c371525f78b -r c58748aa5abf diffuse-lang/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/diffuse-lang/receipt Sat Jan 30 17:26:17 2021 +0100 @@ -0,0 +1,18 @@ +# SliTaz package receipt. + +PACKAGE="diffuse-lang" +VERSION="0.4.8" +CATEGORY="utilities" +SHORT_DESC="Graphical tool for merging and comparing text files - localised messages." +MAINTAINER="maintainer@slitaz.org" +LICENSE="GPLv2+" +WEB_SITE="https://sourceforge.net/projects/diffuse/" + +WANTED="diffuse" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share + cp -a $install/usr/share/locale $fs/usr/share +} diff -r 3c371525f78b -r c58748aa5abf diffuse/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/diffuse/description.txt Sat Jan 30 17:26:17 2021 +0100 @@ -0,0 +1,3 @@ +Diffuse is a small and simple text merge tool written in Python. +With Diffuse, you can easily merge, edit, and review changes to your code. +Diffuse is free software. diff -r 3c371525f78b -r c58748aa5abf diffuse/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/diffuse/receipt Sat Jan 30 17:26:17 2021 +0100 @@ -0,0 +1,38 @@ +# SliTaz package receipt. + +PACKAGE="diffuse" +VERSION="0.4.8" +CATEGORY="utilities" +SHORT_DESC="Graphical tool for merging and comparing text files." +MAINTAINER="maintainer@slitaz.org" +LICENSE="GPLv2+" +WEB_SITE="https://sourceforge.net/projects/diffuse/" + +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WGET_URL="${WEB_SITE}files/$PACKAGE/$VERSION/$TARBALL" + +DEPENDS="python pygtk" +BUILD_DEPENDS="python" + +# Rules to configure and make the package. +compile_rules() +{ + ./install.py \ + --destdir=$install \ + --prefix=/usr \ + --files-only +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share + + cp -a $install/etc $fs + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/share/applications $fs/usr/share + cp -a $install/usr/share/diffuse $fs/usr/share + cp -a $install/usr/share/gnome $fs/usr/share + cp -a $install/usr/share/icons $fs/usr/share + cp -a $install/usr/share/omf $fs/usr/share +}