27 lines
865 B
Bash
27 lines
865 B
Bash
# Template file for 'git-filter-repo'
|
|
pkgname=git-filter-repo
|
|
version=2.34.0
|
|
revision=3
|
|
depends="git python3"
|
|
checkdepends="git python3 perl rsync dos2unix"
|
|
short_desc="Versatile tool for rewriting git history"
|
|
maintainer="Cameron Nemo <cam@nohom.org>"
|
|
license="MIT"
|
|
homepage="https://github.com/newren/git-filter-repo/"
|
|
distfiles="https://github.com/newren/git-filter-repo/releases/download/v${version}/git-filter-repo-${version}.tar.xz"
|
|
checksum=b1bf46af1e6a91a54056d0254e480803db8e40f631336c559a1a94d2a08389c4
|
|
|
|
do_check() {
|
|
t/run_tests
|
|
}
|
|
|
|
do_install() {
|
|
vlicense COPYING.mit
|
|
vinstall git-filter-repo 0755 "${py3_sitelib}" git_filter_repo.py
|
|
vmkdir usr/libexec/git-core
|
|
ln -s "/${py3_sitelib}/git_filter_repo.py" \
|
|
"${DESTDIR}/usr/libexec/git-core/git-filter-repo"
|
|
vman Documentation/man1/git-filter-repo.1
|
|
vdoc Documentation/html/git-filter-repo.html
|
|
}
|