# HG changeset patch # User Hans-G?nter Theisgen # Date 1605965564 -3600 # Node ID e6ba5f59bef2ea6f744709e05270d96a57132403 # Parent 8c721866e037faf723799da186b73473b25aed29 created recipe for vbindiff diff -r 8c721866e037 -r e6ba5f59bef2 vbindiff/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vbindiff/description.txt Sat Nov 21 14:32:44 2020 +0100 @@ -0,0 +1,3 @@ +VBinDiff (Visual Binary Diff) displays files in hexadecimal 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 8c721866e037 -r e6ba5f59bef2 vbindiff/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vbindiff/receipt Sat Nov 21 14:32:44 2020 +0100 @@ -0,0 +1,32 @@ +# SliTaz package receipt v2. + +PACKAGE="vbindiff" +VERSION="3.0_beta5" +CATEGORY="utilities" +TAGS="compare editor" +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/$PACKAGE/releases/download/$VERSION/$TARBALL" + +DEPENDS="ncurses ncurses-libpanel" +BUILD_DEPENDS="ncurses-dev ncurses-libpanel" + +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 +}