wok-current diff vbindiff/receipt @ rev 24003
created recipe for vbindiff
author | Hans-G?nter Theisgen |
---|---|
date | Sat Jan 16 16:21:11 2021 +0100 (2021-01-16) |
parents | |
children | 5ea0ce1cecc0 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/vbindiff/receipt Sat Jan 16 16:21:11 2021 +0100 1.3 @@ -0,0 +1,35 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="vbindiff" 1.7 +VERSION="3.0_beta5" 1.8 +CATEGORY="utilities" 1.9 +TAGS="compare" 1.10 +SHORT_DESC="Visual binary diff." 1.11 +MAINTAINER="maintainer@slitaz.org" 1.12 +LICENSE="GPLv2+" 1.13 +WEB_SITE="https://www.cjmweb.net/vbindiff/" 1.14 + 1.15 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.16 +WGET_URL="https://github.com/mrdudz/vbindiff/releases/download/$VERSION/$TARBALL" 1.17 + 1.18 +DEPENDS="libpanel ncursesw" 1.19 +BUILD_DEPENDS="libpanel ncursesw-dev" 1.20 + 1.21 +HOST_ARCH="i486 arm" 1.22 + 1.23 +# Rules to configure and make the package. 1.24 +compile_rules() 1.25 +{ 1.26 + ./configure \ 1.27 + --prefix=/usr \ 1.28 + $CONFIGURE_ARGS && 1.29 + make && 1.30 + make DESTDIR=$DESTDIR install 1.31 +} 1.32 + 1.33 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.34 +genpkg_rules() 1.35 +{ 1.36 + mkdir -p $fs/usr 1.37 + cp -a $install/usr/bin $fs/usr 1.38 +}