mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-31 10:46:16 +00:00
3f08599581
All the go ports installing *.bak files left after sed calls in ports Makefile. Tweak sed calls to not create them in first place and bump PORTREVISION to reflect package change. PR: 280176 Approved by: go (maintainer timeout)
26 lines
741 B
Makefile
26 lines
741 B
Makefile
DISTVERSION= 1.20.14
|
|
# Always set PORTREVISION explicitly as otherwise they are inherited from lang/go-devel
|
|
PORTREVISION= 1
|
|
MASTER_SITES= https://golang.org/dl/ \
|
|
https://github.com/dmgk/go-bootstrap/releases/download/${BOOTSTRAP_TAG}/:bootstrap \
|
|
LOCAL/dmgk:bootstrap
|
|
DISTFILES= go${DISTVERSION}.src.tar.gz \
|
|
go-${OPSYS:tl}-${GOARCH_${ARCH}}${GOARM_${ARCH}}-${BOOTSTRAP_TAG}.tar.xz:bootstrap
|
|
|
|
# Avoid conflicting patch files
|
|
PATCHFILES=
|
|
|
|
COMMENT= Go programming language
|
|
|
|
BUILD_DEPENDS=
|
|
|
|
MASTERDIR= ${.CURDIR}/../go-devel
|
|
PATCHDIR= ${.CURDIR}/files
|
|
WRKSRC= ${WRKDIR}/go
|
|
DISTINFO_FILE= ${.CURDIR}/distinfo
|
|
SHEBANG_FILES= misc/wasm/go_js_wasm_exec \
|
|
src/net/http/cgi/testdata/test.cgi
|
|
BASH= ${SH}
|
|
|
|
.include "${MASTERDIR}/Makefile"
|