27 lines
757 B
Bash
27 lines
757 B
Bash
# Template file for 'checkbashisms'
|
|
pkgname=checkbashisms
|
|
version=2.22.2
|
|
revision=1
|
|
depends="perl"
|
|
checkdepends="shunit2 perl"
|
|
short_desc="Debian script that checks for bash-isms"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="https://tracker.debian.org/pkg/devscripts"
|
|
changelog="https://salsa.debian.org/debian/devscripts/-/raw/master/debian/changelog"
|
|
distfiles="${DEBIAN_SITE}/main/d/devscripts/devscripts_${version}.tar.xz"
|
|
checksum=15f95a96dd89c6a2d2d20ab4c32f3ca570aa88dbc78fbb1f3fb7cbc1d4a6502b
|
|
|
|
pre_install() {
|
|
vsed -i "s|###VERSION###|${version}|" scripts/checkbashisms.pl
|
|
}
|
|
|
|
do_check() {
|
|
./test/test_checkbashisms
|
|
}
|
|
|
|
do_install() {
|
|
vbin scripts/checkbashisms.pl checkbashisms
|
|
vman scripts/checkbashisms.1
|
|
}
|