summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 51decc906bad29254ec553d8d5e82e7ad6ca6d5a (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: houkime <houkime at protonmail.com>

pkgname=guile-chickadee
_name=chickadee
pkgver=0.5.0
pkgrel=1
pkgdesc='a game development toolkit for Guile Scheme'
arch=(any)
license=(GPL3)
depends=('guile>=2.1.4' 'guile-sdl2' 'guile-opengl' 'openal' 'libvorbis' 'mpg123')
provides=('guile-chickadee')
conflicts=('guile-chickadee')
url=https://dthompson.us/projects/chickadee.html
source=("https://files.dthompson.us/chickadee/chickadee-$pkgver.tar.gz")
md5sums=('4ce31027dbe2ff13cd4fb0890b1634b2')


build(){
  cd "$srcdir/$_name-$pkgver"
  autoreconf -vif
  ./configure --prefix=/usr
  make
}

package() {
  cd "$srcdir/$_name-$pkgver"
  make DESTDIR=$pkgdir install
}