2019-01-18 16:46:03 +01:00
|
|
|
TERMUX_PKG_HOMEPAGE=https://gohugo.io/
|
|
|
|
TERMUX_PKG_DESCRIPTION="A fast and flexible static site generator"
|
2019-01-21 13:53:58 +01:00
|
|
|
TERMUX_PKG_LICENSE="Apache-2.0"
|
2020-12-20 14:16:34 +01:00
|
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
2021-07-30 14:40:32 +02:00
|
|
|
TERMUX_PKG_VERSION=0.86.1
|
2019-01-18 16:46:03 +01:00
|
|
|
TERMUX_PKG_SRCURL=https://github.com/gohugoio/hugo/archive/v$TERMUX_PKG_VERSION.tar.gz
|
2021-07-30 14:40:32 +02:00
|
|
|
TERMUX_PKG_SHA256=9e4b65249c890945b542d1e2737bdc3cb2240cc9ad081670ae5a65543002f90a
|
2019-06-19 22:55:43 +02:00
|
|
|
TERMUX_PKG_DEPENDS="libc++"
|
2019-01-18 16:46:03 +01:00
|
|
|
|
|
|
|
termux_step_make() {
|
|
|
|
termux_setup_golang
|
2021-07-10 16:00:18 +02:00
|
|
|
export GOPATH=$TERMUX_PKG_BUILDDIR
|
|
|
|
|
|
|
|
cd $TERMUX_PKG_SRCDIR
|
|
|
|
go build \
|
|
|
|
-o "$TERMUX_PREFIX/bin/hugo" \
|
|
|
|
-tags "linux extended" \
|
|
|
|
main.go
|
|
|
|
# "linux" tag should not be necessary
|
|
|
|
# try removing when golang version is upgraded
|
|
|
|
|
|
|
|
# Building for host to generate manpages and completion.
|
|
|
|
chmod 700 -R $GOPATH/pkg && rm -rf $GOPATH/pkg
|
|
|
|
unset GOOS GOARCH CGO_LDFLAGS
|
|
|
|
unset CC CXX CFLAGS CXXFLAGS LDFLAGS
|
2019-01-19 14:34:41 +01:00
|
|
|
go build \
|
2021-07-10 16:00:18 +02:00
|
|
|
-o "$TERMUX_PKG_BUILDDIR/hugo" \
|
|
|
|
-tags "linux extended" \
|
2019-01-19 14:34:41 +01:00
|
|
|
main.go
|
2021-07-10 16:00:18 +02:00
|
|
|
# "linux" tag should not be necessary
|
|
|
|
# try removing when golang version is upgraded
|
2019-01-18 16:46:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
termux_step_make_install() {
|
2019-01-19 14:34:41 +01:00
|
|
|
mkdir -p $TERMUX_PREFIX/share/{bash-completion/completions,man/man1}
|
|
|
|
|
2021-07-10 16:00:18 +02:00
|
|
|
$TERMUX_PKG_BUILDDIR/hugo gen autocomplete \
|
2019-01-19 14:34:41 +01:00
|
|
|
--completionfile=$TERMUX_PREFIX/share/bash-completion/completions/hugo
|
2021-07-10 16:00:18 +02:00
|
|
|
$TERMUX_PKG_BUILDDIR/hugo gen man \
|
2019-01-19 14:34:41 +01:00
|
|
|
--dir=$TERMUX_PREFIX/share/man/man1/
|
2019-01-18 16:46:03 +01:00
|
|
|
}
|