new package: git-sizer (#7170)

This commit is contained in:
YAKSH BARIYA 2021-07-23 18:02:58 +05:30 committed by GitHub
parent f3a3924551
commit 78691304c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

20
packages/git-sizer/build.sh Executable file
View File

@ -0,0 +1,20 @@
TERMUX_PKG_HOMEPAGE=https://github.com/github/git-sizer
TERMUX_PKG_DESCRIPTION="Compute various size metrics for a Git repository"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="Yaksh Bariya <yakshbari4@gmail.com>"
TERMUX_PKG_VERSION=1.4.0
TERMUX_PKG_SRCURL=https://github.com/github/git-sizer/archive/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=5dafc4014d6bfae40e678d72c0a67a29cd9ac7b38a0894fc75ab8c05a9064a4b
TERMUX_PKG_DEPENDS="git"
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_make() {
termux_setup_golang
export GOPATH=$TERMUX_PKG_CACHEDIR/go
make
}
termux_step_make_install() {
install -Dm700 -t "$TERMUX_PREFIX"/bin bin/git-sizer
}