# Template file for 'go' pkgname=go version=1.2 revision=1 wrksrc=go nostrip=yes makedepends="ed bison" depends="perl gawk" short_desc="The Go Programming Language" maintainer="Juan RP " homepage="http://golang.org/" license="BSD" distfiles="http://go.googlecode.com/files/go${version}.src.tar.gz" checksum=9ab83fb8eafe39f4204ef0f8e84e5ff7e8f1d533ddb05f51e6dc81503e8c0ae4 do_build() { cd ${wrksrc} export GOROOT_FINAL="/usr/lib/go" export GOOS=linux export GOARCH=arm cd src bash make.bash cd ${wrksrc} export GOROOT_FINAL="/usr/lib/go" export GOOS=linux export GOARCH=386 cd src bash make.bash if [ "${XBPS_MACHINE}" = "x86_64" ]; then cd ${wrksrc} export GOROOT_FINAL="/usr/lib/go" export GOOS=linux export GOARCH=amd64 cd src bash make.bash fi } do_install() { vinstall LICENSE 644 usr/share/licenses/go vinstall misc/bash/go 644 usr/share/bash-completion/completions vinstall misc/emacs/go-mode-load.el 644 usr/share/emacs/site-lisp vinstall misc/emacs/go-mode.el 644 usr/share/emacs/site-lisp vinstall misc/zsh/go 644 usr/share/zsh/site-functions _go for f in ftdetect/gofiletype.vim autoload/go/complete.vim indent/go.vim \ ftplugin/go/fmt.vim ftplugin/go/import.vim \ syntax/go.vim syntax/godoc.vim plugin/godoc.vim; do vinstall misc/vim/$f 644 usr/share/vim/vimfiles done install -d ${DESTDIR}/{etc/profile.d,usr/{share/go,lib/go,lib/go/src,lib/go/site/src}} cp -r doc misc -t ${DESTDIR}/usr/share/go ln -s /usr/share/go/doc ${DESTDIR}/usr/lib/go/doc cp -a bin ${DESTDIR}/usr cp -a pkg ${DESTDIR}/usr/lib/go cp -a src/pkg ${DESTDIR}/usr/lib/go/src/ cp -a src/cmd ${DESTDIR}/usr/lib/go/src/cmd cp -a src/lib9 ${DESTDIR}/usr/lib/go/src/ cp -a lib ${DESTDIR}/usr/lib/go/ cp -a include ${DESTDIR}/usr/lib/go/ install -Dm644 src/Make.* ${DESTDIR}/usr/lib/go/src # Remove object files from target src dir find ${DESTDIR}/usr/lib/go/src/ -type f -name '*.[ao]' -delete find ${DESTDIR}/usr/lib/go/src/pkg -type f -executable -delete # Headers for C modules vinstall src/pkg/runtime/runtime.h 644 usr/lib/go/src/pkg/runtime vinstall src/pkg/runtime/cgocall.h 644 usr/lib/go/src/pkg/runtime # For packages that source /etc/profile.d/go.sh vinstall ${FILESDIR}/go.sh 755 etc/profile.d # This is to make go get code.google.com/p/go-tour/gotour and # then running the gotour executable work out of the box. # # Also, /usr/bin is the place for system-wide executables, # not /usr/lib/go/bin. Users should use different paths by # setting the appropriate environment variables. # ln -sf /usr/bin ${DESTDIR}/usr/lib/go/bin # For godoc vinstall favicon.ico 644 usr/lib/go rm -f ${DESTDIR}/usr/share/go/doc/articles/wiki/get.bin }