summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 65cf09f7ff3094260800a87586d875b0e04a1425 (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
# Maintainer: Tarn W. Burton <twburton@gmail.com>
pkgname=mkcl-git
pkgver=v1.1.11.r189.g5bc0106
pkgrel=1
pkgdesc="ManKai Common Lisp"
arch=('x86_64')
url="https://github.com/jcbeaudoin/MKCL"
license=('LGPL')
options+=(!strip)
depends=('awk' 'bash' 'glibc' 'gmp')
makedepends=('git')
provides=('common-lisp')
source=('git+https://github.com/jcbeaudoin/MKCL.git')
sha512sums=('SKIP')

pkgver() {
  cd MKCL
  git describe --tag --long --abbrev=7 | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
  cd MKCL
  ./configure --prefix=/usr
  make
}

package() {
  cd MKCL
  make DESTDIR=$pkgdir install
}