1418550e25
OpenCPN is a free software (GPLv2) project to create a concise chart plotter and navigation software, for use underway or as a planning tool. OpenCPN is developed by a team of active sailors using real world conditions for program testing and refinement. This package contains data files from the Global Self-consistent, Hierarchical, High-resolution Shoreline Database which are displayed when no charts are present.
34 lines
906 B
Makefile
34 lines
906 B
Makefile
# $NetBSD: Makefile,v 1.1 2015/01/28 14:14:52 bouyer Exp $
|
|
#
|
|
|
|
VERSION= 2.2.4
|
|
DISTNAME= opencpn-gshhs_${VERSION}
|
|
PKGNAME= opencpn-plugin-gshhs-${VERSION}
|
|
CATEGORIES= geography
|
|
EXTRACT_SUFX= .tar.xz
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=opencpnplugins/opencpn_packaging_data/}
|
|
|
|
WRKSRC= ${WRKDIR}/opencpn/gshhs/
|
|
|
|
MAINTAINER= bouyer@NetBSD.org
|
|
HOMEPAGE= http://opencpn.org/ocpn/
|
|
COMMENT= complete OpenCPN shoreline database
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
USE_LANGUAGES=
|
|
USE_TOOLS=
|
|
|
|
do-build:
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/opencpn/gshhs
|
|
for file in \
|
|
poly-f-1.dat poly-h-1.dat poly-i-1.dat poly-l-1.dat \
|
|
wdb_borders_f.b wdb_borders_h.b wdb_borders_i.b wdb_borders_l.b \
|
|
wdb_rivers_f.b wdb_rivers_h.b wdb_rivers_i.b wdb_rivers_l.b \
|
|
; do \
|
|
${INSTALL_DATA} ${WRKSRC}/$$file \
|
|
${DESTDIR}${PREFIX}/share/opencpn/gshhs/; \
|
|
done
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|
|
|