summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9dcafa633dc3d1d8f5ac06945502077e9983b151 (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
# Maintainer: alucryd <alucryd at gmail dot com>
# Contributor: L42y <423300 at gmail dot com>
# Contributor: teddy_beer_maniac <teddy_beer_maniac at wp dot pl>

pkgname=gnome-common-git
pkgver=3.14.0.r12.4363223
pkgrel=1
pkgdesc="Common development macros for GNOME"
arch=('any')
url="http://www.gnome.org"
license=('GPL')
makedepends=('git')
provides=("${pkgname%-*}")
conflicts=("${pkgname%-*}")
source=("git://git.gnome.org/${pkgname%-*}")
sha256sums=('SKIP')

pkgver() {
  cd ${pkgname%-*}

  printf "%s" "$(git describe --tags | sed 's/-/.r/; s/-g/./')"
}

build() {
  cd ${pkgname%-*}

  ./autogen.sh --prefix='/usr'
  make
}

package() {
  cd ${pkgname%-*}

  make DESTDIR="${pkgdir}" install
  
  # resolve conflict with autoconf-archive
  rm ${pkgdir}/usr/share/aclocal/ax_check_enable_debug.m4
  rm ${pkgdir}/usr/share/aclocal/ax_code_coverage.m4
}

# vim: ts=2 sw=2 et: