# HG changeset patch # User Hans-G?nter Theisgen # Date 1563285459 -3600 # Node ID 6847c1ac08833574bc9ceea5867be78b3c7b3580 # Parent 041c7e1cb0eb91f015df2e6b7a3b886ed2d22ece created recipe for xxdiff 4.01 diff -r 041c7e1cb0eb -r 6847c1ac0883 xxdiff/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xxdiff/description.txt Tue Jul 16 14:57:39 2019 +0100 @@ -0,0 +1,4 @@ +xxdiff is a graphical browser for viewing the differences between two +files and can be used to produce a merged version. The text of the +two or three files are presented side by side with their differences +highlighted for easy identification. diff -r 041c7e1cb0eb -r 6847c1ac0883 xxdiff/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xxdiff/receipt Tue Jul 16 14:57:39 2019 +0100 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="xxdiff" +VERSION="4.01" +CATEGORY="development" +SHORT_DESC="A graphical front end to the diff command." +MAINTAINER="developer@slitaz.org" +LICENSE="GPL2" +WEB_SITE="http://furius.ca/xxdiff/" + +TARBALL="$PACKAGE-${VERSION/./}.tar.xz" +WGET_URL="http://ponce.cc/slackware/sources/repo/$TARBALL" + +DEPENDS="libQtCore libQtGui" +BUILD_DEPENDS="bison flex qmake Qt4-dev" + +# Rules to configure and make the package. +compile_rules() +{ + cd src + make QMAKE=/usr/bin/qmake -f Makefile.bootstrap && + make QMAKE=/usr/bin/qmake +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + cp -a $src/bin/xxdiff $fs/usr/bin +}