blob: aaccc6016cd8cbb917580dde5a5e075a12fc892f (
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
|
# Maintainer: <zhaose@Erekir>
pkgname=guile-g-golf
_pkgname=g-golf
pkgver=0.8.0.rc.4
_pkgver=0.8.0-rc-4
pkgrel=1
pkgdesc="A library for developing modern applications (GTK) in Guile Scheme."
arch=('x86_64')
url="https://www.gnu.org/software/g-golf/learn.html"
license=('LGPL')
depends=('guile' 'glib2' 'gobject-introspection' 'guile-lib')
makedepends=('autoconf' 'automake' 'texinfo')
optdepends=('gtk4: For using GTK-4 bindings'
'gtk3: For using GTK-3 bindings'
)
source=("http://ftp.gnu.org/gnu/${_pkgname}/${_pkgname}-${_pkgver}.tar.gz"{,.sig})
sha256sums=('7a3995cc4b89bbccfcea8d983c809c45a50f7c21ce9c77e72fe2f98612293560'
'SKIP')
sha256sum=()
validpgpkeys=('842265459B413377EEAC91DEF374FD93A3057AD7')
build() {
cd "$srcdir/${_pkgname}-${_pkgver}"
./configure --prefix=/usr --with-guile-site=yes
make
}
package() {
cd "$srcdir/${_pkgname}-${_pkgver}"
make DESTDIR="$pkgdir/" install
}
# vim:set ts=2 sw=2 et:
|