2025-07-26 21:09:11 +02:00
|
|
|
#!/bin/sh
|
2025-07-26 21:39:15 +02:00
|
|
|
|
|
|
|
# Existing builds
|
|
|
|
GOOS=darwin GOARCH=arm64 go build -o bin/portscraper_OSX_ARM64 main.go
|
|
|
|
GOOS=darwin GOARCH=amd64 go build -o bin/portscraper_OSX_X64 main.go
|
|
|
|
GOOS=windows GOARCH=amd64 go build -o bin/portscraper_WIN_X64_86.exe main.go
|
|
|
|
GOOS=windows GOARCH=386 go build -o bin/portscraper_WIN_X86.exe main.go
|
|
|
|
GOOS=freebsd GOARCH=amd64 go build -o bin/portscraper_FREEBSD_X64 main.go
|
|
|
|
GOOS=freebsd GOARCH=386 go build -o bin/portscraper_FREEBSD_X32 main.go
|
|
|
|
GOOS=freebsd GOARCH=arm64 go build -o bin/portscraper_FREEBSD_ARM64 main.go
|
|
|
|
GOOS=linux GOARCH=386 go build -o bin/portscraper_LINUX_X32 main.go
|
|
|
|
GOOS=linux GOARCH=amd64 go build -o bin/portscraper_LINUX_X64 main.go
|
|
|
|
GOOS=linux GOARCH=arm64 go build -o bin/portscraper_LINUX_ARM64 main.go
|
|
|
|
GOOS=linux GOARCH=arm go build -o bin/portscraper_LINUX_ARM main.go
|
2025-07-26 21:39:55 +02:00
|
|
|
GOOS=linux GOARCH=mipsle go build -o bin/portscraper_LINUX_MIPSLE main.go
|
|
|
|
|
|
|
|
# Add more later
|