blob: 345c2bb006058f42f1f3d99cb867917864be97c4 (
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
|
# Maintainer: Mitchel Humpherys <mitch.special@gmail.com>
pkgname=namhyung-global-git
_gitname=global
pkgver=e8571bc9eb
pkgrel=1
pkgdesc="GNU Global with extra goodies for Linux kernel development"
arch=(i686 x86_64)
url=https://github.com/namhyung/global
license=(GPL)
makedepends=(git)
source=(git+https://github.com/namhyung/global.git)
md5sums=(SKIP)
provides=(namhyung-global)
pkgver() {
cd $_gitname
git describe --always | sed 's|-|.|g'
}
build() {
cd "$srcdir/$_gitname"
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/$_gitname"
make DESTDIR="$pkgdir/" install
}
|