summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d38e666a6c9c38029752697fbe2c7926035f667d (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: Masanori Ogino <masanori.ogino@gmail.com>
# Contributor: perlawk
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>

pkgname=siod
pkgver=3.6.2
pkgrel=1
pkgdesc="Scheme in one day or scheme in one defun"
arch=('i686' 'x86_64')
url="http://people.delphiforums.com/gjc/siod.html"
license=('LGPL')
depends=('gd')
source=('git+https://github.com/ludwhe/siod'
        'use-rpath.patch')
sha256sums=('SKIP'
            '2babd5b14db11d48b70ef07c22d7df0f4b3aca7978b5da7fc7f947b16b80a3df')

build() {
  cd "$srcdir/siod"
  patch --forward --strip=1 --input="${srcdir}/use-rpath.patch"
  make PREFIX=/usr
}

package() {
  cd "$srcdir/siod"
  make install PREFIX=$pkgdir/usr
}