void-packages/srcpkgs/ponyc/template

32 lines
1.1 KiB
Bash

# Template file for 'ponyc'
pkgname=ponyc
version=0.24.2
revision=1
only_for_archs="x86_64"
build_style=gnu-makefile
hostmakedepends="llvm3.9"
makedepends="zlib-devel ncurses-devel libatomic-devel"
short_desc="OO, actor-model, capabilities-secure, high-performance language"
maintainer="Brian Mitchell <brian@strmpnk.co>"
license="BSD-2-Clause"
homepage="https://ponylang.org/"
distfiles="https://github.com/ponylang/ponyc/archive/${version}.tar.gz"
checksum=903e2a5d3a8f597f9088869a5ffbd7f2357eff5898cd3d21ecf7eb33d0de5e51
do_build() {
make config=release default_pic=true
}
do_install() {
make config=release destdir=${DESTDIR}/usr/lib/pony/${version} prefix=${DESTDIR}/usr install
rm ${DESTDIR}/usr/bin/ponyc ${DESTDIR}/usr/lib/libponyrt.a \
${DESTDIR}/usr/lib/libponyc.a ${DESTDIR}/usr/include/pony.h
ln -s /usr/lib/pony/${version}/lib/libponyrt.a ${DESTDIR}/usr/lib
ln -s /usr/lib/pony/${version}/lib/libponyc.a ${DESTDIR}/usr/lib
ln -s /usr/lib/pony/${version}/bin/ponyc ${DESTDIR}/usr/bin
ln -s /usr/lib/pony/${version}/include/pony.h ${DESTDIR}/usr/include
vlicense LICENSE
vdoc README.md
vcopy examples usr/share/doc/ponyc/
}