28 lines
704 B
Bash
28 lines
704 B
Bash
# Template file for 'vpcs'
|
|
pkgname=vpcs
|
|
version=0.8
|
|
revision=2
|
|
build_wrksrc="src"
|
|
build_style=gnu-makefile
|
|
make_cmd="make -f Makefile.linux"
|
|
short_desc="Virtual PC Simulator"
|
|
maintainer="Michael Aldridge <maldridge@VoidLinux.eu>"
|
|
license="2-clause-BSD"
|
|
homepage="https://sourceforge.net/projects/vpcs"
|
|
distfiles="${SOURCEFORGE_SITE}/project/vpcs/${version}/${pkgname}-${version}-src.tbz"
|
|
checksum=dca602d0571ba852c916632c4c0060aa9557dd744059c0f7368860cfa8b3c993
|
|
|
|
only_for_archs="i686 i686-musl x86_64 x86_64-musl"
|
|
|
|
pre_build() {
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
x86_64*) sed -i "s|i386|amd64|" Makefile.linux;;
|
|
esac
|
|
}
|
|
|
|
do_install() {
|
|
vbin vpcs
|
|
vman ${wrksrc}/man/vpcs.1
|
|
vlicense ${wrksrc}/COPYING
|
|
}
|