diff options
| author | Robert Clausecker <fuz@FreeBSD.org> | 2026-07-06 11:51:53 +0000 |
|---|---|---|
| committer | Robert Clausecker <fuz@FreeBSD.org> | 2026-07-08 08:49:10 +0000 |
| commit | 796e29309e8ff2be52de3b83b107230dd95ffbbd (patch) | |
| tree | 3dcfa286337abec5866b6fbe0d19e7708473954e | |
| parent | 1a6bcf50bbdafd201b8c921a2a8bd37b01ec9ad4 (diff) | |
archivers/plakar: only for aarch64, amd64
The module modernc.org/sqlite (and dependencies such as modernc.org/libc)
are only available on aarch64 and amd64 FreeBSD. Other platforms are
not supported on FreeBSD right now.
Approved by: portmgr (build fix blanket)
| -rw-r--r-- | archivers/plakar/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/archivers/plakar/Makefile b/archivers/plakar/Makefile index aba68c083562..ae1b54b1ee59 100644 --- a/archivers/plakar/Makefile +++ b/archivers/plakar/Makefile @@ -10,6 +10,9 @@ WWW= https://docs.plakar.io/ LICENSE= ISCL LICENSE_FILE= ${WRKSRC}/LICENSE +ONLY_FOR_ARCHS= aarch64 amd64 +ONLY_FOR_ARCHS_REASON= module modernc.org/sqlite only supported on aarch64 and amd64 + USES= go:1.25+,modules GO_MODULE= github.com/PlakarKorp/plakar GO_TARGET= . |
