blob: a6de475e5038e25a462ad194542e33fdb5ef1105 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Maintainer: Walter Smuts <smuts.walter@gmail.com>
# Forked from: Altmanninger <aclopte@gmail.com>
pkgname=git-autofixup-git
pkgdesc='A git subcommand to automatically create fixup commits for topic branches'
url='https://github.com/torbiak/git-autofixup'
license=('Artistic2.0')
pkgver=0.003001
pkgrel=2
depends=(perl git)
makedepends=(make)
optdepends=(
'git-revise: efficiently apply fixup commits'
)
arch=(any)
source=(
"git-autofixup::git+https://github.com/torbiak/git-autofixup.git#branch=master"
)
sha256sums=(SKIP)
conflicts=("git-autofixup")
build() {
cd git-autofixup
perl Makefile.PL
}
check() {
cd git-autofixup
make test
}
package() {
cd git-autofixup
make install DESTDIR="$pkgdir"
}
|