summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 05dae1a503e0446ff0a8602b457651a4469f4dcc (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
48
49
50
51
52
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
# Previous maintainer:  Vincent Grande <shoober420@gmail.com>
# Contributor: Andreas Radke <andyrtr@archlinux.org>
# Contributor: Laurent Carlier <lordheavym@gmail.com>

pkgname=glu-git
pkgver=9.0.3.r0.ga2b96c7
pkgrel=1
pkgdesc="Mesa OpenGL utility library"
arch=('i686' 'x86_64')
url="https://gitlab.freedesktop.org/mesa/glu"
license=('LGPL')
depends=('gcc-libs' 'libgl')
makedepends=('git' 'meson')
provides=("glu=$pkgver")
conflicts=('glu')
options=('staticlibs')
source=("git+https://gitlab.freedesktop.org/mesa/glu.git")
sha256sums=('SKIP')


pkgver() {
  cd "glu"

  _tag=$(git tag -l --sort -v:refname | grep -E '^glu-[0-9\.]+$' | head -n1)
  _rev=$(git rev-list --count $_tag..HEAD)
  _hash=$(git rev-parse --short HEAD)
  printf "%s.r%s.g%s" "$_tag" "$_rev" "$_hash" | sed 's/^glu-//'
}

build() {
  cd "glu"

  meson setup \
    --buildtype=plain \
    --prefix="/usr" \
    -Ddefault_library="both" \
    "_build"
  meson compile -C "_build"
}

check() {
  cd "glu"

  meson test -C "_build"
}

package() {
  cd "glu"

  meson install -C "_build" --destdir "$pkgdir"
}