void-packages/srcpkgs/ldc/template
2020-05-13 01:17:47 +02:00

36 lines
1 KiB
Bash

# Template file for 'ldc'
pkgname=ldc
version=1.21.0
revision=2
wrksrc="ldc-${version}-src"
build_style=cmake
configure_args="
-DINCLUDE_INSTALL_DIR=/usr/include/dlang/ldc
-DBUILD_SHARED_LIBS=ON
-DCMAKE_BUILD_TYPE=RelWithDebInfo
-DBASH_COMPLETION_COMPLETIONSDIR=/usr/share/bash-completion"
conf_files="/etc/ldc2.conf"
hostmakedepends="dmd llvm10 perl pkg-config"
makedepends="libcurl-devel libffi-devel ncurses-devel zlib-devel"
depends="ldc-runtime"
short_desc="Portable D programming language compiler based on LLVM"
maintainer="Orphaned <orphan@voidlinux.org>"
license="BSD-3-Clause, BSL-1.0"
homepage="https://wiki.dlang.org/LDC"
changelog="https://raw.githubusercontent.com/ldc-developers/ldc/master/CHANGELOG.md"
distfiles="https://github.com/ldc-developers/ldc/releases/download/v${version}/ldc-${version}-src.tar.gz"
checksum=50b7f929bf6b285c5b6618dd32162838daa2788298f25e669570df3fdc0716d8
nopie=yes
nocross=yes
post_install() {
vlicense LICENSE
}
ldc-runtime_package() {
short_desc+=" - D runtime"
pkg_install() {
vmove "usr/lib/*.so*"
}
}