summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4b4ecd5b82ecd6794bcd198af762519f8cc2b77f (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
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.

# Maintainer: Peter <craven@gmx.net>
pkgname=scheme-9-from-empty-space
pkgver=20181023
pkgrel=1
epoch=
pkgdesc="S9fES is a mature, portable, and comprehensible interpreter for R4RS Scheme."
arch=(x86_64 i686)
url="http://www.t3x.org/s9fes/"
license=('unknown')
groups=()
depends=()
makedepends=()
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("http://www.t3x.org/s9fes/s9fes-$pkgver.tgz")
md5sums=('682021ed80f705feaa41fc0962fd7aaf')
noextract=()
validpgpkeys=()

build() {
  cd s9
  make PREFIX=/usr
}

package() {
  cd s9
  sed -i -e 's/$(PREFIX)|/$(XPREFIX)|/' Makefile
  make PREFIX=${pkgdir}/usr XPREFIX=/usr install
}