gimgtools is a set of command-line tools to examine and manipulate Garmin IMG (the map format) files. The included tools are: * gimgunlock: Unlock a locked map so that it can be used on ALL devices. * gimgxor: Unscramble XOR'd map files. * gimginfo: Print information of the map. * gimgextract: Extract the IMG sections. * gimgch: Hexdump and compare section header of two or more IMGs. ok sebastia@
29 lines
512 B
Makefile
29 lines
512 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2013/05/13 06:57:01 jasper Exp $
|
|
|
|
COMMENT= Garmin Image Tools
|
|
|
|
DISTNAME= gimgtools-0.02
|
|
CATEGORIES= geo
|
|
|
|
HOMEPAGE= https://github.com/wuyongzheng/gimgtools
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
MASTER_SITES= http://distfiles.nl/
|
|
|
|
WANTLIB += c m
|
|
|
|
USE_GMAKE= Yes
|
|
|
|
MAKE_ENV += CC=${CC} ECFLAGS="${CFLAGS}"
|
|
|
|
NO_TEST= Yes
|
|
|
|
do-install:
|
|
.for g in gimginfo gimgfixcmd gimgxor gimgunlock gimgch gimgextract cmdc
|
|
${INSTALL_PROGRAM} ${WRKSRC}/$g ${PREFIX}/bin/
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|