blob: f5f132a7801652386c033b3a290ced0bfa5e3755 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Terin Stock <terinjokes@gmail.com>
pkgname=topgit
pkgver=0.19.13
pkgrel=1
pkgdesc="A different patch queue manager"
url="https://github.com/mackyle/topgit"
arch=('any')
license=('GPL2')
depends=('gawk' 'bash')
makedepends=()
source=(
"https://github.com/mackyle/topgit/archive/topgit-${pkgver}.tar.gz"
)
sha256sums=('eaab17c64c95e70acfcc9d4061e7cc4143eb5f6dbe7bc23a5091cb45885a682c')
package() {
cd "${pkgname}-topgit-${pkgver}" || exit 1
make prefix=/usr cmddir=/usr/lib/topgit DESTDIR="${pkgdir}" install
install -D -m644 contrib/tg-completion.bash "${pkgdir}/usr/share/bash-completion/completions/tg"
}
|