milis/talimatname/genel/g/go18/talimat

36 lines
831 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Tanım: GO Programlama dili
# URL: http://golang.org/
# Paketçi: milisarge
# Gerekler:
isim=go18
_isim=go
surum=1.8.1
devir=1
kaynak=(https://storage.googleapis.com/golang/${_name}${surum}.src.tar.gz)
derle() {
export GOROOT_BOOTSTRAP=/usr/local/gccgo
export GOROOT_FINAL=/usr/lib/go
export GOOS=linux
export GOARCH=amd64
export CGO_ENABLED=1
#patch -p0 -i $SRC/$_name-certpath.diff
cd $SRC/go/src
bash make.bash --no-clean
install -d $PKG/usr/lib
cp -r $SRC/go $PKG/usr/lib/
install -d $PKG/usr/bin
ln -s /usr/lib/go/bin/go $PKG/usr/bin/
ln -s /usr/lib/go/bin/gofmt $PKG/usr/bin/
find $PKG \( -name "*.a" -o -name "*.go" \) -exec chmod 644 '{}' \;
find $PKG \( -name "README*" -o -name "AUTHORS" -o -name "TODO" \) -delete
rm $PKG/usr/lib/go/src/*.bat
}