wok-next rev 21727 tip
created recipe for vbindiff
author | Hans-G?nter Theisgen |
---|---|
date | Sat Nov 21 14:32:44 2020 +0100 (2020-11-21) |
parents | 8c721866e037 |
children | |
files | vbindiff/description.txt vbindiff/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/vbindiff/description.txt Sat Nov 21 14:32:44 2020 +0100 1.3 @@ -0,0 +1,3 @@ 1.4 +VBinDiff (Visual Binary Diff) displays files in hexadecimal and ASCII (or EBCDIC). 1.5 +It can also display two files at once, and highlight the differences between them. 1.6 +Unlike diff, it works well with large files (up to 4 GB).
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/vbindiff/receipt Sat Nov 21 14:32:44 2020 +0100 2.3 @@ -0,0 +1,32 @@ 2.4 +# SliTaz package receipt v2. 2.5 + 2.6 +PACKAGE="vbindiff" 2.7 +VERSION="3.0_beta5" 2.8 +CATEGORY="utilities" 2.9 +TAGS="compare editor" 2.10 +SHORT_DESC="Visual binary diff" 2.11 +MAINTAINER="maintainer@slitaz.org" 2.12 +LICENSE="GPLv2+" 2.13 +WEB_SITE="https://www.cjmweb.net/vbindiff/" 2.14 + 2.15 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.16 +WGET_URL="https://github.com/mrdudz/$PACKAGE/releases/download/$VERSION/$TARBALL" 2.17 + 2.18 +DEPENDS="ncurses ncurses-libpanel" 2.19 +BUILD_DEPENDS="ncurses-dev ncurses-libpanel" 2.20 + 2.21 +compile_rules() 2.22 +{ 2.23 + ./configure \ 2.24 + --prefix=/usr \ 2.25 + $CONFIGURE_ARGS && 2.26 + make && 2.27 + make DESTDIR=$DESTDIR install 2.28 +} 2.29 + 2.30 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.31 +genpkg_rules() 2.32 +{ 2.33 + mkdir -p $fs/usr 2.34 + cp -a $install/usr/bin $fs/usr 2.35 +}