0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-03-04 03:40:08 +00:00
Biswapriyo Nath 1547788efb bump(main/aptly): 1.6.1
Remove patch file which was added in upstream.
0b5a627c84
2025-02-24 20:31:17 +05:30

41 lines
1.2 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://www.aptly.info
TERMUX_PKG_DESCRIPTION="A Swiss Army knife for Debian repository management"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="1.6.1"
TERMUX_PKG_SRCURL=https://github.com/aptly-dev/aptly/archive/v$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=0488bc0717a1becda77fe1094a5eb4972ef1b6cd335f4108ddbbf89c6f917410
TERMUX_PKG_AUTO_UPDATE=true
termux_step_make() {
termux_setup_golang
export GOPATH=$TERMUX_PKG_BUILDDIR
mkdir -p "$GOPATH"/src/github.com/aptly-dev/
cp -a "$TERMUX_PKG_SRCDIR" "$GOPATH"/src/github.com/aptly-dev/aptly
cd "$GOPATH"/src/github.com/aptly-dev/aptly
go mod tidy
go mod vendor
go generate
go build -ldflags "-s -w" -trimpath -o build/aptly
}
termux_step_make_install() {
install -Dm700 \
"$GOPATH"/src/github.com/aptly-dev/aptly/build/aptly \
"$TERMUX_PREFIX"/bin/aptly
install -Dm600 \
"$TERMUX_PKG_SRCDIR"/man/aptly.1 \
"$TERMUX_PREFIX"/share/man/man1/aptly.1
install -Dm600 \
"$TERMUX_PKG_SRCDIR"/completion.d/aptly \
"$TERMUX_PREFIX"/share/bash-completion/completions/aptly
install -Dm600 \
"$TERMUX_PKG_SRCDIR"/completion.d/_aptly \
"$TERMUX_PREFIX"/share/zsh/site-functions/_aptly
}