23 lines
683 B
Bash
23 lines
683 B
Bash
# Template file for 'abi-compliance-checker'
|
|
pkgname=abi-compliance-checker
|
|
version=2.3
|
|
revision=2
|
|
hostmakedepends="perl"
|
|
depends="binutils ctags perl"
|
|
checkdepends="ctags"
|
|
short_desc="Tool for checking backward API/ABI compat of a C/C++ library"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="LGPL-2.1-or-later"
|
|
homepage="https://github.com/lvc/abi-compliance-checker"
|
|
distfiles="https://github.com/lvc/abi-compliance-checker/archive/${version}.tar.gz"
|
|
checksum=b1e32a484211ec05d7f265ab4d2c1c52dcdb610708cb3f74d8aaeb7fe9685d64
|
|
|
|
do_check() {
|
|
perl abi-compliance-checker.pl -test
|
|
}
|
|
|
|
do_install() {
|
|
vmkdir usr
|
|
perl Makefile.pl -install --prefix=/usr --destdir="${DESTDIR}"
|
|
}
|