wok rev 24010

created recipes for diffuse and diffuse-lang
author Hans-G?nter Theisgen
date Sat Jan 30 17:26:17 2021 +0100 (2021-01-30)
parents 3c371525f78b
children 5b0e64c0628a
files diffuse-lang/receipt diffuse/description.txt diffuse/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/diffuse-lang/receipt	Sat Jan 30 17:26:17 2021 +0100
     1.3 @@ -0,0 +1,18 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="diffuse-lang"
     1.7 +VERSION="0.4.8"
     1.8 +CATEGORY="utilities"
     1.9 +SHORT_DESC="Graphical tool for merging and comparing text files - localised messages."
    1.10 +MAINTAINER="maintainer@slitaz.org"
    1.11 +LICENSE="GPLv2+"
    1.12 +WEB_SITE="https://sourceforge.net/projects/diffuse/"
    1.13 +
    1.14 +WANTED="diffuse" 
    1.15 +
    1.16 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.17 +genpkg_rules()
    1.18 +{
    1.19 +	mkdir -p $fs/usr/share
    1.20 +	cp -a $install/usr/share/locale		$fs/usr/share
    1.21 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/diffuse/description.txt	Sat Jan 30 17:26:17 2021 +0100
     2.3 @@ -0,0 +1,3 @@
     2.4 +Diffuse is a small and simple text merge tool written in Python.
     2.5 +With Diffuse, you can easily merge, edit, and review changes to your code.
     2.6 +Diffuse is free software.
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/diffuse/receipt	Sat Jan 30 17:26:17 2021 +0100
     3.3 @@ -0,0 +1,38 @@
     3.4 +# SliTaz package receipt.
     3.5 +
     3.6 +PACKAGE="diffuse"
     3.7 +VERSION="0.4.8"
     3.8 +CATEGORY="utilities"
     3.9 +SHORT_DESC="Graphical tool for merging and comparing text files."
    3.10 +MAINTAINER="maintainer@slitaz.org"
    3.11 +LICENSE="GPLv2+"
    3.12 +WEB_SITE="https://sourceforge.net/projects/diffuse/"
    3.13 +
    3.14 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    3.15 +WGET_URL="${WEB_SITE}files/$PACKAGE/$VERSION/$TARBALL"
    3.16 +
    3.17 +DEPENDS="python pygtk" 
    3.18 +BUILD_DEPENDS="python"
    3.19 +
    3.20 +# Rules to configure and make the package.
    3.21 +compile_rules()
    3.22 +{
    3.23 +	./install.py			\
    3.24 +		--destdir=$install	\
    3.25 +		--prefix=/usr		\
    3.26 +		--files-only
    3.27 +}
    3.28 +
    3.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.30 +genpkg_rules()
    3.31 +{
    3.32 +	mkdir -p $fs/usr/share
    3.33 +
    3.34 +	cp -a $install/etc			$fs
    3.35 +	cp -a $install/usr/bin			$fs/usr
    3.36 +	cp -a $install/usr/share/applications	$fs/usr/share
    3.37 +	cp -a $install/usr/share/diffuse	$fs/usr/share
    3.38 +	cp -a $install/usr/share/gnome		$fs/usr/share
    3.39 +	cp -a $install/usr/share/icons		$fs/usr/share
    3.40 +	cp -a $install/usr/share/omf		$fs/usr/share
    3.41 +}