# HG changeset patch # User Hans-G?nter Theisgen # Date 1610810471 -3600 # Node ID dffc0bc4d50c5aae280bceb87300257e95f273a9 # Parent e0426929131794a664e3c17c2f78f6e1638a8b43 created recipe for vbindiff diff -r e04269291317 -r dffc0bc4d50c vbindiff/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vbindiff/description.txt Sat Jan 16 16:21:11 2021 +0100 @@ -0,0 +1,3 @@ +VBinDiff (Visual Binary Diff) displays files in sedecimal and ASCII (or EBCDIC). +It can also display two files at once, and highlight the differences between them. +Unlike diff, it works well with large files (up to 4 GB). diff -r e04269291317 -r dffc0bc4d50c vbindiff/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vbindiff/receipt Sat Jan 16 16:21:11 2021 +0100 @@ -0,0 +1,35 @@ +# SliTaz package receipt. + +PACKAGE="vbindiff" +VERSION="3.0_beta5" +CATEGORY="utilities" +TAGS="compare" +SHORT_DESC="Visual binary diff." +MAINTAINER="maintainer@slitaz.org" +LICENSE="GPLv2+" +WEB_SITE="https://www.cjmweb.net/vbindiff/" + +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/mrdudz/vbindiff/releases/download/$VERSION/$TARBALL" + +DEPENDS="libpanel ncursesw" +BUILD_DEPENDS="libpanel ncursesw-dev" + +HOST_ARCH="i486 arm" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure \ + --prefix=/usr \ + $CONFIGURE_ARGS && + make && + make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $install/usr/bin $fs/usr +}