* Ports that were pinned to a deprecated version of Go (1.23 or older) have been unpinned. * Ports that were pinned to a still-supported version of Go (1.24 or newer) have been converted to requesting that as their minimum Go version. * Ports that had been forcibly deprecated for pinning an expired Go version have been undeprecated.
23 lines
406 B
Makefile
23 lines
406 B
Makefile
PORTNAME= pdfcpu
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.11.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= print
|
|
|
|
MAINTAINER= diizzy@FreeBSD.org
|
|
COMMENT= PDF processor written in Go
|
|
WWW= https://github.com/pdfcpu/pdfcpu
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
USES= go:1.24+,modules
|
|
|
|
GO_MODULE= github.com/${PORTNAME}/${PORTNAME}
|
|
|
|
PLIST_FILES= bin/pdfcpu
|
|
|
|
GO_TARGET= ./cmd/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|