9637f7852e
pkglint -r --network --only "migrate" As a side-effect of migrating the homepages, pkglint also fixed a few indentations in unrelated lines. These and the new homepages have been checked manually.
26 lines
723 B
Makefile
26 lines
723 B
Makefile
# $NetBSD: Makefile,v 1.7 2020/01/26 17:30:47 rillig Exp $
|
|
#
|
|
|
|
V= 5.1.4
|
|
DISTNAME= kicad-doc-${V}
|
|
CATEGORIES= cad
|
|
MASTER_SITES= https://kicad-downloads.s3.cern.ch/docs/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://kicad-pcb.org/
|
|
COMMENT= Documentation for the PCB CAD software
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
DOCDIR= ${DESTDIR}${PREFIX}/share/doc/kicad
|
|
|
|
do-build:
|
|
${FIND} ${WRKSRC} -name PaxHeader -print | ${XARGS} ${RM} -rf
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${DOCDIR}
|
|
${CP} -R ${WRKSRC}/share/doc/kicad/help ${DOCDIR}/
|
|
${FIND} ${DOCDIR} -type d -print | ${XARGS} ${CHMOD} ${PKGDIRMODE}
|
|
${FIND} ${DOCDIR} -type f -print | ${XARGS} ${CHMOD} ${SHAREMODE}
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|