summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e0bccc35c2fd33689ac22b413f7b7cddae0638f0 (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
# Maintainer: holomorph

pkgname=geiser
pkgver=0.8.1
pkgrel=1
pkgdesc='Emacs environment to hack in Scheme'
arch=('any')
url="http://www.nongnu.org/geiser/"
license=('BSD')
optdepends=('racket: scheme implementation'
            'guile: scheme implementation'
            'chicken: scheme implementation')
install=geiser.install
source=("https://github.com/jaor/geiser/archive/$pkgver.tar.gz")
sha256sums=('e891b6f488d7bd8056e8c2ff590e4862497703484282efa43d8ac1196d5a933d')

build() {
  cd "$pkgname-$pkgver"
  ./autogen.sh
  ./configure --prefix=/usr --with-lispdir='${datadir}/emacs/site-lisp/geiser'
  make all
}

package() {
  cd "$pkgname-$pkgver"
  make DESTDIR="$pkgdir" install
  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/"$pkgname"/COPYING
}