summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8b07679888ad06919a68377f99b5bf3016a96e3e (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
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>

pkgname=m4-git
pkgver=r359.gd69fa528
pkgrel=1
pkgdesc="The GNU macro processor"
arch=('i686' 'x86_64')
url="https://www.gnu.org/software/m4/m4.html"
license=('GPL3')
depends=('glibc')
makedepends=('git' 'gettext' 'gperf' 'rsync' 'texinfo')
provides=('m4')
conflicts=('m4')
source=("git+https://git.savannah.gnu.org/git/m4.git")
sha256sums=('SKIP')


pkgver() {
  cd "m4"

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

build() {
  cd "m4"

  ./bootstrap
  ./configure --prefix="/usr"
  make
}

check() {
  cd "m4"

  #make check
}

package() {
  cd "m4"

  make DESTDIR="$pkgdir" install
}