mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-06 00:13:37 +01:00
64 lines
1.6 KiB
Plaintext
64 lines
1.6 KiB
Plaintext
# Contributor: Joseph Benden <joe@benden.us>
|
|
# Maintainer: Joseph Benden <joe@benden.us>
|
|
pkgname=stgit
|
|
pkgver=0.22
|
|
pkgrel=0
|
|
pkgdesc="Manage a stack of patches using GIT as a backend"
|
|
arch="noarch"
|
|
url="http://www.procode.org/stgit/"
|
|
license="GPL-2.0-or-later"
|
|
options="!check" # unit-tests fail due to iconv usage
|
|
depends="git python3"
|
|
makedepends="asciidoc xmlto perl"
|
|
subpackages="
|
|
$pkgname-doc
|
|
$pkgname-zsh-completion
|
|
$pkgname-fish-completion
|
|
$pkgname-bash-completion
|
|
"
|
|
source="https://github.com/stacked-git/stgit/releases/download/v$pkgver/stgit-$pkgver.tar.gz"
|
|
|
|
prepare() {
|
|
default_prepare
|
|
|
|
# this will be a noop, as we are working with a tarball,
|
|
# but throws git errors --> just get rid of it
|
|
echo "version=\"$pkgver\"" > stgit/builtin_version.py
|
|
}
|
|
|
|
check() {
|
|
make \
|
|
PYTHON=python3 \
|
|
prefix=/usr \
|
|
mandir=/usr/share/man/ \
|
|
test
|
|
}
|
|
|
|
build() {
|
|
make \
|
|
PYTHON=python3 \
|
|
prefix=/usr \
|
|
mandir=/usr/share/man/ \
|
|
all doc
|
|
}
|
|
|
|
package() {
|
|
make \
|
|
DESTDIR="$pkgdir" \
|
|
PYTHON=python3 \
|
|
prefix=/usr \
|
|
mandir=/usr/share/man/ \
|
|
install install-doc
|
|
|
|
install -Dm0644 "$pkgdir"/usr/share/stgit/completion/stgit.bash \
|
|
"$pkgdir"/usr/share/bash-completion/completions/stgit
|
|
install -Dm0644 "$pkgdir"/usr/share/stgit/completion/stgit.zsh \
|
|
"$pkgdir"/usr/share/zsh/site-functions/_stgit
|
|
install -Dm0644 "$pkgdir"/usr/share/stgit/completion/stg.fish \
|
|
"$pkgdir"/usr/share/fish/completions/stg.fish
|
|
|
|
rm -rf "$pkgdir"/usr/share/stgit/completions
|
|
}
|
|
|
|
sha512sums="f6fa6a11a31181a365a911af25c1656195584bed9adcb9707b4302097dc516cf9b12dfda6c3207daa127497027bb6604a68f6259bb74c2a111f742fd78edc3f9 stgit-0.22.tar.gz"
|