mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 05:36:38 +02:00
26 lines
677 B
Text
26 lines
677 B
Text
# Contributor: Jose-Luis Rivas <ghostbar@riseup.net>
|
|
# Maintainer: qaqland <qaq@qaq.land>
|
|
pkgname=bats-core
|
|
pkgver=1.11.1
|
|
pkgrel=0
|
|
pkgdesc="Bash Automated Testing System"
|
|
url="https://github.com/bats-core/bats-core"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="bash"
|
|
subpackages="$pkgname-doc"
|
|
source="$pkgname-$pkgver.zip::https://github.com/bats-core/bats-core/archive/v$pkgver.zip"
|
|
|
|
replaces="bats" # for backward compatibility
|
|
|
|
check() {
|
|
bash -c 'bin/bats --tap test'
|
|
}
|
|
|
|
package() {
|
|
./install.sh "$pkgdir"/usr
|
|
}
|
|
|
|
sha512sums="
|
|
fb96d0a135f4c150b042af3477a63c7a2e03108ecf45e59f948737e92908b03d7ebb3216966f269cdb5f536b57419fe78745398453f03dfb038fe033fc2cfb9f bats-core-1.11.1.zip
|
|
"
|