9c9e7f65b8
Specifying Termux org members is more correct as we don't have repo-specific maintainers for termux-packages. DEB control field specification doesn't allow to specify multiple people as package maintainers. Value "Termux members @termux" will be used as default for that field which can be overridden on per-package basis if needed. %ci:no-build
17 lines
479 B
Bash
17 lines
479 B
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/direnv/direnv
|
|
TERMUX_PKG_DESCRIPTION="Environment switcher for shell"
|
|
TERMUX_PKG_LICENSE="MIT"
|
|
TERMUX_PKG_VERSION=2.21.3
|
|
TERMUX_PKG_SRCURL=https://github.com/direnv/direnv/archive/v$TERMUX_PKG_VERSION.tar.gz
|
|
TERMUX_PKG_SHA256=012651a79e47150de4a386d1c3c81a017d5ceac14f5a0c24b0596a2215cde8be
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
|
|
termux_step_make() {
|
|
termux_setup_golang
|
|
make
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
make install DESTDIR=$TERMUX_PREFIX
|
|
}
|