summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9210be07f81c72c19c6c5d6cdd0e0808d53e4b11 (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
# Maintainer: Alexander F. Rødseth <xyproto@archlinux.org>

pkgname=lisp
pkgver=1.2.0
pkgrel=1
pkgdesc='Wrapper scripts for SBCL, for programming in Common Lisp'
arch=(any)
url='https://github.com/xyproto/lisp'
license=(GPL2)
depends=(sbcl)
makedepends=(git)
source=("git+$url#tag=$pkgver")
sha256sums=(SKIP)

check() {
  getent passwd "$USER" | cut -d: -f5 | make -C $pkgname test
}

package() {
  DESTDIR="$pkgdir" make -C "$pkgname" install
}

# vim: ts=2 sw=2 et: