summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b7bf59dd3368dc2d0a1a43d664502fc580cf4cb1 (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
# Maintainer: Geoffrey Teale <tealeg@gmail.com>
_name=goblins
pkgname=guile-$_name
pkgver=0.10
pkgrel=1
pkgdesc="Spritely Goblins is a distributed object programming environment for Guile Scheme."
arch=(any)
url="https://spritely.institute/goblins/"
license=('Apache')
groups=()
depends=("guile>=3.0", "guile-gcrypt>=0.3.0", "guile-fibers>=1.0.0")
makedepends=("guile>=3.0", "guile-gcrypt>=0.3.0", "guile-fibers>=1.0.0")
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=(https://spritely.institute/files/releases/$pkgname/$pkgname-$pkgver.tar.gz)
noextract=()
md5sums=("8ea95ea89da3edff129017bc82405ad6") #autofill using updpkgsums

build() {
  cd "$pkgname-$pkgver"
  
  ./configure --prefix=/usr
  make
}

package() {
  cd "$pkgname-$pkgver"

  make DESTDIR="$pkgdir/" install
}