summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 47264f62b64191f9a5abeba324a881911e792ccb (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
# Contributor: Rose Kunkel <rose@rosekunkel.me>
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>

pkgname=guile-hall
pkgver=0.4.1
pkgrel=2
pkgdesc='Project manager and build tool for GNU guile'
arch=('x86_64')
url='https://gitlab.com/a-sassmannshausen/guile-hall'
license=('GPL3')
depends=('git' 'guile' 'guile-config' 'texinfo')
optdepends=('guix: for GNU Guix integration')
source=("https://gitlab.com/a-sassmannshausen/$pkgname/-/archive/$pkgver/$pkgname-$pkgver.tar.gz")
sha256sums=('547085953485164a981ca982dd5b8bef0d17cc5b8d6a50ef841a1c80ef39c31a')

build() {
  cd "$pkgname-$pkgver"
  autoreconf -vif
  GUILD=/usr/bin/guild ./configure --prefix=/usr
  make
}

check() {
  cd "$pkgname-$pkgver"
  make -k check
}

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