2019-11-16 21:14:34 -05:00
|
|
|
|
2021-12-08 14:14:05 -05:00
|
|
|
VERSION=0.2.5
|
2021-08-17 19:24:08 -04:00
|
|
|
APP=reseed-tools
|
2019-11-16 21:14:34 -05:00
|
|
|
USER_GH=eyedeekay
|
2021-12-09 16:27:19 -05:00
|
|
|
CGO_ENABLED=0
|
2019-11-16 21:14:34 -05:00
|
|
|
|
2019-11-16 21:43:29 -05:00
|
|
|
GOOS?=$(shell uname -s | tr A-Z a-z)
|
|
|
|
GOARCH?="amd64"
|
|
|
|
|
2020-05-06 18:20:56 -04:00
|
|
|
ARG=-v -tags netgo -ldflags '-w -extldflags "-static"'
|
|
|
|
|
2020-12-24 10:27:56 -05:00
|
|
|
#MIN_GO_VERSION=`ls /usr/lib/go-1.14 2>/dev/null >/dev/null && echo 1.14`
|
|
|
|
MIN_GO_VERSION?=1.15
|
2020-05-06 18:20:56 -04:00
|
|
|
|
|
|
|
I2P_UID=$(shell id -u i2psvc)
|
|
|
|
I2P_GID=$(shell id -g i2psvc)
|
2019-11-27 20:13:15 -05:00
|
|
|
|
2020-05-06 21:19:14 -04:00
|
|
|
WHOAMI=$(shell whoami)
|
|
|
|
|
2019-11-16 21:14:34 -05:00
|
|
|
echo:
|
2020-05-06 18:20:56 -04:00
|
|
|
@echo "type make version to do release $(APP) $(VERSION) $(GOOS) $(GOARCH) $(MIN_GO_VERSION) $(I2P_UID) $(I2P_GID)"
|
2019-11-16 21:14:34 -05:00
|
|
|
|
2021-12-04 11:25:05 -05:00
|
|
|
index:
|
|
|
|
@echo "<!DOCTYPE html>" > index.html
|
|
|
|
@echo "<html>" >> index.html
|
|
|
|
@echo "<head>" >> index.html
|
|
|
|
@echo " <title>Reseed Tools</title>" >> index.html
|
2021-12-08 17:13:23 -05:00
|
|
|
@echo " <link rel=\"stylesheet\" type=\"text/css\" href =\"/style.css\" />" >> index.html
|
2021-12-04 11:25:05 -05:00
|
|
|
@echo "</head>" >> index.html
|
|
|
|
@echo "<body>" >> index.html
|
|
|
|
pandoc README.md >> index.html
|
|
|
|
@echo "</body>" >> index.html
|
|
|
|
@echo "</html>" >> index.html
|
|
|
|
|
2021-11-28 12:03:22 -05:00
|
|
|
build:
|
|
|
|
go build $(ARG) -o reseed-tools-$(GOOS)-$(GOARCH)
|
|
|
|
|
|
|
|
1.15-build: gofmt
|
2021-08-17 19:24:08 -04:00
|
|
|
/usr/lib/go-$(MIN_GO_VERSION)/bin/go build $(ARG) -o reseed-tools-$(GOOS)-$(GOARCH)
|
2019-11-16 21:43:29 -05:00
|
|
|
|
2019-11-16 21:45:35 -05:00
|
|
|
clean:
|
2021-12-05 20:09:42 -05:00
|
|
|
rm reseed-tools-* tmp -rfv *.deb plugin reseed-tools
|
2019-11-16 21:45:35 -05:00
|
|
|
|
2019-11-16 21:43:29 -05:00
|
|
|
tar:
|
2021-12-05 20:09:42 -05:00
|
|
|
tar --exclude="./.git" --exclude="./tmp" --exclude=".vscode" --exclude="./*.pem" --exclude="./*.crl" --exclude="./*.crt" -cvf ../reseed-tools.tar.xz .
|
2019-11-16 21:14:34 -05:00
|
|
|
|
|
|
|
install:
|
2021-11-28 12:03:22 -05:00
|
|
|
install -m755 reseed-tools-$(GOOS)-$(GOARCH) /usr/bin/reseed-tools
|
2021-12-03 14:41:49 -05:00
|
|
|
install -m644 etc/default/reseed /etc/default/reseed
|
2021-12-03 00:35:12 -05:00
|
|
|
install -m755 etc/init.d/reseed /etc/init.d/reseed
|
2021-12-03 14:41:49 -05:00
|
|
|
mkdir -p /etc/systemd/system/reseed.d/
|
2021-12-03 17:19:16 -05:00
|
|
|
mkdir -p /var/lib/i2p
|
|
|
|
install -g i2psvc -o i2psvc -d /var/lib/i2p/i2p-config/reseed/
|
2021-12-05 19:23:48 -05:00
|
|
|
cp -r content /var/lib/i2p/i2p-config/reseed/content
|
|
|
|
chown -R i2psvc:i2psvc /var/lib/i2p/i2p-config/reseed/
|
2021-12-03 14:41:49 -05:00
|
|
|
install -m644 etc/systemd/system/reseed.d/reseed.conf /etc/systemd/system/reseed.d/reseed.conf
|
|
|
|
install -m644 etc/systemd/system/reseed.d/reseed.service /etc/systemd/system/reseed.d/reseed.service
|
2019-11-16 21:14:34 -05:00
|
|
|
|
2021-12-05 19:23:48 -05:00
|
|
|
uninstall:
|
|
|
|
rm /usr/bin/reseed-tools
|
|
|
|
rm /etc/default/reseed
|
|
|
|
rm /etc/init.d/reseed
|
|
|
|
rm /etc/systemd/system/reseed.d/reseed.conf
|
|
|
|
rm /etc/systemd/system/reseed.d/reseed.service
|
|
|
|
rm -rf /var/lib/i2p/i2p-config/reseed/
|
|
|
|
|
2021-12-04 01:30:18 -05:00
|
|
|
checkinstall: build
|
2021-12-03 17:19:16 -05:00
|
|
|
fakeroot checkinstall \
|
|
|
|
--default \
|
|
|
|
--install=no \
|
|
|
|
--fstrans=yes \
|
|
|
|
--pkgname=reseed-tools \
|
|
|
|
--pkgversion=$(VERSION) \
|
|
|
|
--pkggroup=net \
|
|
|
|
--pkgrelease=1 \
|
|
|
|
--pkgsource="https://i2pgit.org/idk/reseed-tools" \
|
|
|
|
--maintainer="$(SIGNER)" \
|
|
|
|
--requires="i2p,i2p-router" \
|
|
|
|
--suggests="i2p,i2p-router,syndie,tor,tsocks" \
|
|
|
|
--nodoc \
|
|
|
|
--deldoc=yes \
|
|
|
|
--deldesc=yes \
|
|
|
|
--backup=no
|
|
|
|
|
2019-11-16 21:14:34 -05:00
|
|
|
### You shouldn't need to use these now that the go mod require rule is fixed,
|
|
|
|
## but I'm leaving them in here because it made it easier to test that both
|
|
|
|
## versions behaved the same way. -idk
|
|
|
|
|
|
|
|
build-fork:
|
2021-08-17 19:24:08 -04:00
|
|
|
/usr/lib/go-$(MIN_GO_VERSION)/bin/go build -o reseed-tools-idk
|
2019-11-16 21:14:34 -05:00
|
|
|
|
|
|
|
build-unfork:
|
2021-08-17 19:24:08 -04:00
|
|
|
/usr/lib/go-$(MIN_GO_VERSION)/bin/go build -o reseed-tools-md
|
2019-11-16 21:14:34 -05:00
|
|
|
|
|
|
|
fork:
|
2020-12-24 10:27:56 -05:00
|
|
|
sed -i 's|idk/reseed-tools|idk/reseed-tools|g' main.go cmd/*.go reseed/*.go su3/*.go
|
2019-11-16 21:14:34 -05:00
|
|
|
make gofmt build-fork
|
|
|
|
|
|
|
|
unfork:
|
2020-12-24 10:27:56 -05:00
|
|
|
sed -i 's|idk/reseed-tools|idk/reseed-tools|g' main.go cmd/*.go reseed/*.go su3/*.go
|
2021-08-17 19:24:08 -04:00
|
|
|
sed -i 's|RTradeLtd/reseed-tools|idk/reseed-tools|g' main.go cmd/*.go reseed/*.go su3/*.go
|
2019-11-16 21:14:34 -05:00
|
|
|
make gofmt build-unfork
|
|
|
|
|
|
|
|
gofmt:
|
2019-11-27 20:13:15 -05:00
|
|
|
gofmt -w main.go cmd/*.go reseed/*.go su3/*.go
|
|
|
|
|
|
|
|
try:
|
|
|
|
mkdir -p tmp && \
|
|
|
|
cd tmp && \
|
2021-12-08 16:44:27 -05:00
|
|
|
../reseed-tools-$(GOOS)-$(GOARCH) reseed --signer=you@mail.i2p --netdb=/home/idk/.i2p/netDb --tlsHost=your-domain.tld --onion --p2p --i2p
|
2019-11-27 20:13:15 -05:00
|
|
|
|
|
|
|
stop:
|
|
|
|
mkdir -p tmp && \
|
|
|
|
cd tmp && \
|
2021-12-08 16:44:27 -05:00
|
|
|
../reseed-tools-$(GOOS)-$(GOARCH) reseed --signer=you@mail.i2p --netdb=/home/idk/.i2p/netDb --tlsHost=your-domain.tld --onion --p2p --i2p
|
2020-05-06 18:20:56 -04:00
|
|
|
|
|
|
|
docker:
|
|
|
|
docker build -t eyedeekay/reseed .
|
|
|
|
|
2020-05-06 19:30:37 -04:00
|
|
|
docker-push: docker
|
2021-12-09 16:02:18 -05:00
|
|
|
docker push --disable-content-trust=false eyedeekay/reseed:$(VERSION)
|
2020-05-06 19:30:37 -04:00
|
|
|
|
2020-05-06 18:20:56 -04:00
|
|
|
users:
|
|
|
|
docker run --rm eyedeekay/reseed cat /etc/passwd
|
|
|
|
|
|
|
|
docker-ls:
|
|
|
|
docker run --rm \
|
|
|
|
--user $(I2P_UID) \
|
|
|
|
--group-add $(I2P_GID) \
|
|
|
|
--name reseed \
|
|
|
|
--publish 8443:8443 \
|
|
|
|
--volume /var/lib/i2p/i2p-config/netDb:/var/lib/i2p/i2p-config/netDb \
|
|
|
|
eyedeekay/reseed ls /var/lib/i2p/i2p-config -lah
|
|
|
|
|
|
|
|
docker-server:
|
2020-05-06 18:29:44 -04:00
|
|
|
docker run -itd \
|
2020-05-06 18:20:56 -04:00
|
|
|
--name reseed \
|
|
|
|
--user $(I2P_UID) \
|
|
|
|
--group-add $(I2P_GID) \
|
|
|
|
--publish 8443:8443 \
|
|
|
|
--restart=always \
|
|
|
|
--volume /var/lib/i2p/i2p-config/netDb:/var/lib/i2p/i2p-config/netDb:z \
|
2021-07-01 21:00:53 -04:00
|
|
|
--volume reseed-keys:/var/lib/i2p/i2p-config/reseed \
|
2020-05-06 18:20:56 -04:00
|
|
|
eyedeekay/reseed \
|
|
|
|
--signer=hankhill19580@gmail.com
|
|
|
|
docker logs -f reseed
|
|
|
|
|
|
|
|
docker-run:
|
2020-05-06 21:19:14 -04:00
|
|
|
docker run -itd \
|
2020-05-06 18:20:56 -04:00
|
|
|
--name reseed \
|
|
|
|
--user $(I2P_UID) \
|
|
|
|
--group-add $(I2P_GID) \
|
|
|
|
--publish 8443:8443 \
|
|
|
|
--volume /var/lib/i2p/i2p-config/netDb:/var/lib/i2p/i2p-config/netDb:z \
|
2020-05-06 21:38:53 -04:00
|
|
|
--volume reseed-keys:/var/lib/i2p/i2p-config/reseed \
|
2020-05-06 18:20:56 -04:00
|
|
|
eyedeekay/reseed \
|
|
|
|
--signer=hankhill19580@gmail.com
|
2020-05-06 21:19:14 -04:00
|
|
|
|
|
|
|
docker-homerun:
|
|
|
|
docker run -itd \
|
|
|
|
--name reseed \
|
|
|
|
--user 1000 \
|
|
|
|
--group-add 1000 \
|
|
|
|
--publish 8443:8443 \
|
|
|
|
--volume $(HOME)/i2p/netDb:/var/lib/i2p/i2p-config/netDb:z \
|
2020-05-06 21:38:53 -04:00
|
|
|
--volume reseed-keys:/var/lib/i2p/i2p-config/reseed:z \
|
2020-05-06 21:19:14 -04:00
|
|
|
eyedeekay/reseed \
|
2020-12-24 10:27:56 -05:00
|
|
|
--signer=hankhill19580@gmail.com
|
2021-02-04 14:09:35 -05:00
|
|
|
|
|
|
|
export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64/jre/
|
|
|
|
export CGO_CFLAGS=-I/usr/lib/jvm/java-8-openjdk-amd64/include/ -I/usr/lib/jvm/java-8-openjdk-amd64/include/linux/
|
|
|
|
|
|
|
|
gojava:
|
|
|
|
go get -u -v github.com/sridharv/gojava
|
|
|
|
cp -v ~/go/bin/gojava ./gojava
|
|
|
|
|
|
|
|
jar: gojava
|
|
|
|
echo $(JAVA_HOME)
|
|
|
|
./gojava -v -o reseed.jar -s . build ./reseed
|
|
|
|
|
2021-12-04 11:05:02 -05:00
|
|
|
release: version upload checkinstall upload-single-deb plugins upload-su3s upload-bin
|
2021-12-04 00:13:09 -05:00
|
|
|
|
|
|
|
version:
|
|
|
|
cat README.md | gothub release -s $(GITHUB_TOKEN) -u $(USER_GH) -r $(APP) -t v$(VERSION) -d -
|
|
|
|
|
2021-12-04 16:16:06 -05:00
|
|
|
delete-version:
|
|
|
|
gothub delete -s $(GITHUB_TOKEN) -u $(USER_GH) -r $(APP) -t v$(VERSION)
|
|
|
|
|
2021-12-04 00:13:09 -05:00
|
|
|
edit:
|
|
|
|
cat README.md | gothub edit -s $(GITHUB_TOKEN) -u $(USER_GH) -r $(APP) -t v$(VERSION) -d -
|
|
|
|
|
2021-12-04 00:26:36 -05:00
|
|
|
upload: tar
|
|
|
|
gothub upload -R -s $(GITHUB_TOKEN) -u $(USER_GH) -r $(APP) -t v$(VERSION) -f ../reseed-tools.tar.xz -n "reseed-tools.tar.xz"
|
2021-12-04 00:13:09 -05:00
|
|
|
|
2021-12-03 17:38:01 -05:00
|
|
|
binary:
|
|
|
|
GOOS=darwin GOARCH=amd64 make build
|
|
|
|
GOOS=darwin GOARCH=arm64 make build
|
|
|
|
GOOS=linux GOARCH=386 make build
|
|
|
|
GOOS=linux GOARCH=amd64 make build
|
|
|
|
GOOS=linux GOARCH=arm make build
|
|
|
|
GOOS=linux GOARCH=arm64 make build
|
|
|
|
GOOS=openbsd GOARCH=amd64 make build
|
|
|
|
GOOS=freebsd GOARCH=386 make build
|
|
|
|
GOOS=freebsd GOARCH=amd64 make build
|
|
|
|
GOOS=windows GOARCH=amd64 make build
|
|
|
|
GOOS=windows GOARCH=386 make build
|
|
|
|
|
2021-08-17 19:24:08 -04:00
|
|
|
plugins: binary
|
|
|
|
GOOS=darwin GOARCH=amd64 make su3s
|
2021-12-03 16:18:48 -05:00
|
|
|
GOOS=darwin GOARCH=arm64 make su3s
|
2021-08-17 19:24:08 -04:00
|
|
|
GOOS=linux GOARCH=386 make su3s
|
|
|
|
GOOS=linux GOARCH=amd64 make su3s
|
|
|
|
GOOS=linux GOARCH=arm make su3s
|
|
|
|
GOOS=linux GOARCH=arm64 make su3s
|
|
|
|
GOOS=openbsd GOARCH=amd64 make su3s
|
|
|
|
GOOS=freebsd GOARCH=386 make su3s
|
|
|
|
GOOS=freebsd GOARCH=amd64 make su3s
|
2021-08-17 19:38:49 -04:00
|
|
|
GOOS=windows GOARCH=amd64 make su3s
|
2021-12-03 16:18:48 -05:00
|
|
|
GOOS=windows GOARCH=386 make su3s
|
2021-08-17 19:24:08 -04:00
|
|
|
|
2021-12-03 15:26:51 -05:00
|
|
|
upload-bin:
|
|
|
|
GOOS=darwin GOARCH=amd64 make upload-single-bin
|
2021-12-03 16:18:48 -05:00
|
|
|
GOOS=darwin GOARCH=arm64 make upload-single-bin
|
2021-12-03 15:26:51 -05:00
|
|
|
GOOS=linux GOARCH=386 make upload-single-bin
|
|
|
|
GOOS=linux GOARCH=amd64 make upload-single-bin
|
|
|
|
GOOS=linux GOARCH=arm make upload-single-bin
|
|
|
|
GOOS=linux GOARCH=arm64 make upload-single-bin
|
|
|
|
GOOS=openbsd GOARCH=amd64 make upload-single-bin
|
|
|
|
GOOS=freebsd GOARCH=386 make upload-single-bin
|
|
|
|
GOOS=freebsd GOARCH=amd64 make upload-single-bin
|
|
|
|
GOOS=windows GOARCH=amd64 make upload-single-bin
|
2021-12-03 16:18:48 -05:00
|
|
|
GOOS=windows GOARCH=386 make upload-single-bin
|
2021-12-03 15:26:51 -05:00
|
|
|
|
2021-12-04 13:59:04 -05:00
|
|
|
rm-su3s:
|
2021-12-05 04:08:28 -05:00
|
|
|
rm *.su3 -f
|
2021-12-04 13:59:04 -05:00
|
|
|
|
|
|
|
download-su3s: rm-su3s
|
2021-12-04 11:46:49 -05:00
|
|
|
GOOS=darwin GOARCH=amd64 make download-single-su3
|
|
|
|
GOOS=darwin GOARCH=arm64 make download-single-su3
|
|
|
|
GOOS=linux GOARCH=386 make download-single-su3
|
|
|
|
GOOS=linux GOARCH=amd64 make download-single-su3
|
|
|
|
GOOS=linux GOARCH=arm make download-single-su3
|
|
|
|
GOOS=linux GOARCH=arm64 make download-single-su3
|
|
|
|
GOOS=openbsd GOARCH=amd64 make download-single-su3
|
|
|
|
GOOS=freebsd GOARCH=386 make download-single-su3
|
|
|
|
GOOS=freebsd GOARCH=amd64 make download-single-su3
|
|
|
|
GOOS=windows GOARCH=amd64 make download-single-su3
|
|
|
|
GOOS=windows GOARCH=386 make download-single-su3
|
|
|
|
|
2021-12-03 15:26:51 -05:00
|
|
|
upload-su3s:
|
|
|
|
GOOS=darwin GOARCH=amd64 make upload-single-su3
|
2021-12-03 16:18:48 -05:00
|
|
|
GOOS=darwin GOARCH=arm64 make upload-single-su3
|
2021-12-03 15:26:51 -05:00
|
|
|
GOOS=linux GOARCH=386 make upload-single-su3
|
|
|
|
GOOS=linux GOARCH=amd64 make upload-single-su3
|
|
|
|
GOOS=linux GOARCH=arm make upload-single-su3
|
|
|
|
GOOS=linux GOARCH=arm64 make upload-single-su3
|
|
|
|
GOOS=openbsd GOARCH=amd64 make upload-single-su3
|
|
|
|
GOOS=freebsd GOARCH=386 make upload-single-su3
|
|
|
|
GOOS=freebsd GOARCH=amd64 make upload-single-su3
|
|
|
|
GOOS=windows GOARCH=amd64 make upload-single-su3
|
2021-12-03 16:18:48 -05:00
|
|
|
GOOS=windows GOARCH=386 make upload-single-su3
|
2021-12-03 15:26:51 -05:00
|
|
|
|
2021-12-04 11:46:49 -05:00
|
|
|
download-single-su3:
|
2021-12-05 04:16:37 -05:00
|
|
|
wget -N -c "https://github.com/eyedeekay/reseed-tools/releases/download/v$(VERSION)/reseed-tools-$(GOOS)-$(GOARCH).su3"
|
2021-12-04 11:46:49 -05:00
|
|
|
|
2021-12-03 17:23:44 -05:00
|
|
|
upload-single-deb:
|
2021-12-04 00:26:36 -05:00
|
|
|
gothub upload -R -s $(GITHUB_TOKEN) -u $(USER_GH) -r $(APP) -t v$(VERSION) -f reseed-tools_$(VERSION)-1_amd64.deb -l "`sha256sum reseed-tools_$(VERSION)-1_amd64.deb`" -n "reseed-tools_$(VERSION)-1_amd64.deb"
|
2021-12-03 17:23:44 -05:00
|
|
|
|
2021-12-03 15:26:51 -05:00
|
|
|
upload-single-bin:
|
2021-12-04 00:26:36 -05:00
|
|
|
gothub upload -R -s $(GITHUB_TOKEN) -u $(USER_GH) -r $(APP) -t v$(VERSION) -f reseed-tools-"$(GOOS)"-"$(GOARCH)" -l "`sha256sum reseed-tools-$(GOOS)-$(GOARCH)`" -n "reseed-tools-$(GOOS)"-"$(GOARCH)"
|
2021-12-03 15:26:51 -05:00
|
|
|
|
|
|
|
upload-single-su3:
|
2021-12-04 00:26:36 -05:00
|
|
|
gothub upload -R -s $(GITHUB_TOKEN) -u $(USER_GH) -r $(APP) -t v$(VERSION) -f reseed-tools-"$(GOOS)"-"$(GOARCH).su3" -l "`sha256sum reseed-tools-$(GOOS)-$(GOARCH).su3`" -n "reseed-tools-$(GOOS)"-"$(GOARCH).su3"
|
2021-12-03 15:26:51 -05:00
|
|
|
|
2021-12-03 23:16:54 -05:00
|
|
|
tmp/content:
|
|
|
|
mkdir -p tmp
|
|
|
|
cp -rv content tmp/content
|
|
|
|
|
2021-12-04 11:05:02 -05:00
|
|
|
tmp/lib:
|
|
|
|
mkdir -p tmp/lib
|
2021-12-04 16:13:35 -05:00
|
|
|
cp "$(HOME)/Workspace/GIT_WORK/i2p.i2p/build/shellservice.jar" tmp/lib/shellservice.jar
|
2021-12-04 11:05:02 -05:00
|
|
|
|
|
|
|
su3s: tmp/content tmp/lib
|
2021-08-17 19:24:08 -04:00
|
|
|
i2p.plugin.native -name=reseed-tools-$(GOOS)-$(GOARCH) \
|
|
|
|
-signer=hankhill19580@gmail.com \
|
|
|
|
-version "$(VERSION)" \
|
|
|
|
-author=hankhill19580@gmail.com \
|
|
|
|
-autostart=true \
|
|
|
|
-clientname=reseed-tools-$(GOOS)-$(GOARCH) \
|
2021-12-03 23:16:54 -05:00
|
|
|
-command="reseed-tools-$(GOOS)-$(GOARCH) reseed --yes --signer=you@mail.i2p --netdb=\$$CONFIG/netDb" \
|
2021-08-17 19:24:08 -04:00
|
|
|
-consolename="Reseed Tools" \
|
2021-12-03 16:18:48 -05:00
|
|
|
-consoleurl="http://127.0.0.1:8443" \
|
2021-12-03 23:24:53 -05:00
|
|
|
-updateurl="http://idk.i2p/reseed-tools/reseed-tools-$(GOOS)-$(GOARCH).su3" \
|
|
|
|
-website="http://idk.i2p/reseed-tools/" \
|
2021-12-04 15:45:24 -05:00
|
|
|
-icondata="content/images/reseed-icon.png" \
|
2021-12-03 18:07:05 -05:00
|
|
|
-delaystart="3" \
|
2021-12-04 00:10:38 -05:00
|
|
|
-desc="`cat description-pak`" \
|
2021-08-17 19:24:08 -04:00
|
|
|
-exename=reseed-tools-$(GOOS)-$(GOARCH) \
|
2021-08-17 19:38:49 -04:00
|
|
|
-targetos="$(GOOS)" \
|
2021-12-03 23:16:54 -05:00
|
|
|
-res=tmp/ \
|
2021-08-17 19:24:08 -04:00
|
|
|
-license=MIT
|
|
|
|
unzip -o reseed-tools-$(GOOS)-$(GOARCH).zip -d reseed-tools-$(GOOS)-$(GOARCH)-zip
|
|
|
|
|
|
|
|
#export sumbblinux=`sha256sum "../reseed-tools-linux.su3"`
|
2021-12-03 23:16:54 -05:00
|
|
|
#export sumbbwindows=`sha256sum "../reseed-tools-windows.su3"`
|