summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c477137dc14629a4310df695f6d17306c0b03b7c (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
36
37
38
39
40
41
42
43
44
45
46
47
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>

pkgname=glog-git
pkgver=0.3.4.r141.g2a6df66
pkgrel=1
pkgdesc="C++ implementation of the Google logging module"
arch=('i686' 'x86_64')
url="https://github.com/google/glog"
license=('BSD')
makedepends=('git')
provides=('google-glog')
conflicts=('google-glog')
options=('staticlibs')
source=('git+https://github.com/google/glog.git')
sha256sums=('SKIP')


pkgver() {
  cd "glog"

  git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
  cd "glog"

  aclocal
  autoconf
  automake -a

  ./configure
  make
}

check() {
  cd "glog"

  #make check
}

package() {
  cd "glog"

  make prefix="/usr" DESTDIR="$pkgdir" install
  install -Dm644 "COPYING" "$pkgdir/usr/share/licenses/glog/COPYING"
}