void-packages/srcpkgs/ldc/template
2020-11-17 04:14:17 +01:00

36 lines
1.1 KiB
Bash

# Template file for 'ldc'
pkgname=ldc
version=1.24.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 llvm11 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="Auri <me@aurieh.me>"
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=fd9561ade916e9279bdcc166cf0e4836449c24e695ab4470297882588adbba3c
nopie=yes
nocross="dmd compilation fails on cross"
post_install() {
vlicense LICENSE
}
ldc-runtime_package() {
short_desc+=" - D runtime"
pkg_install() {
vmove "usr/lib/*.so*"
}
}