summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 50a63256ab234c7c0a62758af9af693c878c1fa2 (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
# Maintainer: Patrick Ziegler p.ziegler96 at gmail dot comd
# Contributor: Johannes Dewender  arch at JonnyJD dot net
# Contributor: Geoffrey Teale <g.teale@elsevier.com>
pkgname=shunit2
pkgver=2.1.8
pkgrel=1
pkgdesc="xUnit based unit testing for Unix shell scripts"
url="https://github.com/kward/shunit2/"
arch=('any')
license=('Apache')
depends=('bash')
source=(${url}/archive/v${pkgver}.tar.gz)
sha256sums=('b2fed28ba7282e4878640395284e43f08a029a6c27632df73267c8043c71b60c')

check() {
  cd ${srcdir}/$pkgname-$pkgver
  SHELL=/usr/bin/bash bash ./test_runner -s /bin/bash
}

package() {
  cd ${srcdir}/$pkgname-$pkgver
  install -d ${pkgdir}/usr/share/doc/shunit2/examples
  install -t ${pkgdir}/usr/share/doc/shunit2 ./doc/*
  install -t ${pkgdir}/usr/share/doc/shunit2/examples ./examples/*

  install -D shunit2 $pkgdir/usr/bin/shunit2
}