21 lines
660 B
Bash
21 lines
660 B
Bash
# Template file for 'premake5'
|
|
pkgname=premake5
|
|
version=5.0.0alpha13
|
|
revision=1
|
|
_version=${version/alpha/-alpha}
|
|
wrksrc="premake-${_version}"
|
|
build_style=gnu-makefile
|
|
make_build_args="-C build/gmake.unix config=release"
|
|
hostmakedepends="unzip"
|
|
short_desc="Cross-platform, open-source build system"
|
|
maintainer="Renato Aguiar <renato@renag.me>"
|
|
license="BSD-3-Clause"
|
|
homepage="https://premake.github.io/"
|
|
distfiles="https://github.com/premake/premake-core/releases/download/v${_version}/premake-${_version}-src.zip"
|
|
checksum=b28d2d1f4dc7efa8bdfe20d331787461a58a0da558adac0aef939ad006019209
|
|
|
|
do_install() {
|
|
vbin bin/release/premake5
|
|
vlicense LICENSE.txt
|
|
}
|