summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c98f560a47303ef2b9fea7888c077f10200f6bd0 (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
pkgname=lazy-git
pkgver=0.6
pkgrel=1
pkgdesc="Git plugin suite for lazy developers"
arch=('any')
license=('BSD')
depends=('git')
makedepends=('stack')
source=('https://github.com/jbernsie/lazy-git/archive/0.7.tar.gz')
md5sums=('ded33503d8181e09b43b6ebbf0c46d28')

_distname="lazy-git"
_distdir="$_distname-$pkgver"
url="https://github.com/jbernsie/lazy-git"

build() {
  cd "$srcdir/$_distdir"
  make build
}

package() {
  cd "$srcdir/$_distdir"
  make DESTDIR="$pkgdir" install
}