wok rev 21782
created recipe for xxdiff 4.01
author | Hans-G?nter Theisgen |
---|---|
date | Tue Jul 16 14:57:39 2019 +0100 (2019-07-16) |
parents | 041c7e1cb0eb |
children | 89a9d0d5d7e2 |
files | xxdiff/description.txt xxdiff/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/xxdiff/description.txt Tue Jul 16 14:57:39 2019 +0100 1.3 @@ -0,0 +1,4 @@ 1.4 +xxdiff is a graphical browser for viewing the differences between two 1.5 +files and can be used to produce a merged version. The text of the 1.6 +two or three files are presented side by side with their differences 1.7 +highlighted for easy identification.
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/xxdiff/receipt Tue Jul 16 14:57:39 2019 +0100 2.3 @@ -0,0 +1,30 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="xxdiff" 2.7 +VERSION="4.01" 2.8 +CATEGORY="development" 2.9 +SHORT_DESC="A graphical front end to the diff command." 2.10 +MAINTAINER="developer@slitaz.org" 2.11 +LICENSE="GPL2" 2.12 +WEB_SITE="http://furius.ca/xxdiff/" 2.13 + 2.14 +TARBALL="$PACKAGE-${VERSION/./}.tar.xz" 2.15 +WGET_URL="http://ponce.cc/slackware/sources/repo/$TARBALL" 2.16 + 2.17 +DEPENDS="libQtCore libQtGui" 2.18 +BUILD_DEPENDS="bison flex qmake Qt4-dev" 2.19 + 2.20 +# Rules to configure and make the package. 2.21 +compile_rules() 2.22 +{ 2.23 + cd src 2.24 + make QMAKE=/usr/bin/qmake -f Makefile.bootstrap && 2.25 + make QMAKE=/usr/bin/qmake 2.26 +} 2.27 + 2.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.29 +genpkg_rules() 2.30 +{ 2.31 + mkdir -p $fs/usr/bin 2.32 + cp -a $src/bin/xxdiff $fs/usr/bin 2.33 +}