29 lines
653 B
Bash
29 lines
653 B
Bash
# Template file for 'bats-assert'
|
|
pkgname=bats-assert
|
|
version=2.1.0
|
|
revision=2
|
|
depends="bats bats-support"
|
|
checkdepends="$depends"
|
|
short_desc="Common assertions for BATS"
|
|
maintainer="Andrew J. Hesford <ajh@sideband.org>"
|
|
license="CC0-1.0"
|
|
homepage="https://github.com/bats-core/bats-assert"
|
|
distfiles="https://github.com/bats-core/bats-assert/archive/v${version}.tar.gz"
|
|
checksum=98ca3b685f8b8993e48ec057565e6e2abcc541034ed5b0e81f191505682037fd
|
|
|
|
do_check() {
|
|
bats test
|
|
}
|
|
|
|
do_install() {
|
|
local f
|
|
|
|
for f in *.bash; do
|
|
vinstall "$f" 644 usr/lib/bats/bats-assert
|
|
done
|
|
|
|
for f in src/*.bash; do
|
|
vinstall "$f" 644 usr/lib/bats/bats-assert/src
|
|
done
|
|
}
|