forked from larte/kubectl-bin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
37 lines (25 loc) · 857 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
PHOHY = clean release
BASEURL:=https://storage.googleapis.com/kubernetes-release/release
check:
ifndef VERSION
@echo "Define version in ENV"
@exit 1;
else
@echo "Build version ${VERSION}"
endif
prepare: check
@mkdir -p tmp
curl -s ${BASEURL}/v${VERSION}/bin/linux/amd64/kubectl > tmp/kubectl_amd64
curl -s ${BASEURL}/v${VERSION}/bin/linux/386/kubectl > tmp/kubectl_386
release: prepare
set -e; \
MD5_AMD64=`md5sum tmp/kubectl_amd64 | awk '{print $$1}'`; \
MD5_386=`md5sum tmp/kubectl_386 | awk '{print $$1}'`; \
sed -i.bak -r -e "s/pkgver=.*/pkgver=$${VERSION}/g" \
-e "s/md5sums_i686=.*/md5sums_i686=('$${MD5_386}')/g" \
-e "s/md5sums_x86_64=.*/md5sums_x86_64=('$${MD5_AMD64}')/g" PKGBUILD; \
makepkg --printsrcinfo > .SRCINFO; \
makepkg; \
sudo pacman -U kubectl-bin*; \
clean:
rm -rf kubectl-* pkg src *.bak tmp