Tweak is an ncurses-based hex editor. Tweak uses a complex data structure based on B-trees, designed to make almost all editing operations extremely fast, even when they are working on huge amounts of data. Unlike most hex editors, it also has a fully functional insert mode, along with full cut, copy, and paste support. ok sthen@
27 lines
497 B
Makefile
27 lines
497 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2013/05/17 08:24:46 bentley Exp $
|
|
|
|
COMMENT = efficient hex editor
|
|
|
|
DISTNAME = tweak-3.01
|
|
|
|
CATEGORIES = editors
|
|
|
|
HOMEPAGE = http://www.chiark.greenend.org.uk/~sgtatham/tweak/
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB += c ncurses
|
|
|
|
MASTER_SITES = http://www.chiark.greenend.org.uk/~sgtatham/tweak/
|
|
|
|
MAKE_FLAGS = CC="${CC}" \
|
|
CFLAGS="${CFLAGS} -c -Dunix"
|
|
FAKE_FLAGS = PREFIX=${WRKINST}/${TRUEPREFIX}
|
|
|
|
USE_GMAKE = Yes
|
|
|
|
NO_TEST = Yes
|
|
|
|
.include <bsd.port.mk>
|