summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: fab10ac4381ed9c2640c3a2573c3184160617a0e (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
pkgname=git-remote-bzr
pkgver=v0.2.r14.gea3eb41
pkgrel=1
pkgdesc=" Transparent bidirectional bridge between Git and Bazaar for Git "
arch=('i686' 'x86_64')
url="https://github.com/felipec/git-remote-bzr"
license=('GPL2')
depends=('bzr' 'git')
makedepends=('asciidoc')
source=('git+https://github.com/felipec/git-remote-bzr.git')
md5sums=('SKIP')

pkgver() {
  cd "$pkgname"
  git describe --long --tags   | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
	cd "$pkgname"
	make
}

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