wok rev 24003

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Jan 16 16:21:11 2021 +0100 (2021-01-16)
parents e04269291317
children 670e65815150
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 Jan 16 16:21:11 2021 +0100
     1.3 @@ -0,0 +1,3 @@
     1.4 +VBinDiff (Visual Binary Diff) displays files in sedecimal 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 Jan 16 16:21:11 2021 +0100
     2.3 @@ -0,0 +1,35 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="vbindiff"
     2.7 +VERSION="3.0_beta5"
     2.8 +CATEGORY="utilities"
     2.9 +TAGS="compare"
    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/vbindiff/releases/download/$VERSION/$TARBALL"
    2.17 +
    2.18 +DEPENDS="libpanel ncursesw"
    2.19 +BUILD_DEPENDS="libpanel ncursesw-dev"
    2.20 +
    2.21 +HOST_ARCH="i486 arm"
    2.22 +
    2.23 +# Rules to configure and make the package.
    2.24 +compile_rules()
    2.25 +{
    2.26 +	./configure				\
    2.27 +		--prefix=/usr			\
    2.28 +		$CONFIGURE_ARGS &&
    2.29 +	make &&
    2.30 +	make DESTDIR=$DESTDIR install
    2.31 +}
    2.32 +
    2.33 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.34 +genpkg_rules()
    2.35 +{
    2.36 +	mkdir -p $fs/usr
    2.37 +	cp -a $install/usr/bin	$fs/usr
    2.38 +}