mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-08 00:34:26 +02:00
as noted in 88341867a2
,
Alex was last active in April 2022, there has been
no new activity since
33 lines
884 B
Text
33 lines
884 B
Text
# Contributor: Alex Yam <alex@alexyam.com>
|
|
# Maintainer: Celeste <cielesti@protonmail.com>
|
|
maintainer="Celeste <cielesti@protonmail.com>"
|
|
pkgname=vbindiff
|
|
pkgver=3.0_beta5
|
|
pkgrel=2
|
|
pkgdesc="ncurses hex editor with diff mode for binary file comparison, supports files up to 4GB"
|
|
url="https://www.cjmweb.net/vbindiff/"
|
|
arch="all"
|
|
license="GPL-2.0-or-later"
|
|
depends="ncurses-dev"
|
|
options="!check" # no test suite
|
|
subpackages="$pkgname-doc"
|
|
source="https://www.cjmweb.net/vbindiff/vbindiff-$pkgver.tar.gz"
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="
|
|
cc9bc3b950f7b452fbc231f5cf4976b428dbeb96bfe13d518829f8a58898174a4c3b4b1ca0ed075c5b71c7ec27a8e7db4d09e36db74f727e40c524941dd8dbcc vbindiff-3.0_beta5.tar.gz
|
|
"
|