void-packages/srcpkgs/crystal/template
2019-10-21 18:50:45 +02:00

105 lines
3.7 KiB
Bash

# Template file for 'crystal'
pkgname=crystal
version=0.31.1
revision=2
archs="x86_64* i686* aarch64* arm*"
_shardsversion=0.9.0
_bootstrapversion=0.31.1
_bootstraprevision=1
hostmakedepends="git llvm8"
makedepends="gc-devel libatomic_ops pcre-devel libevent-devel libyaml-devel
libxml2-devel"
depends="gc-devel libatomic_ops pcre-devel libevent-devel libyaml-devel
libxml2-devel gmp-devel libressl-devel llvm8 gcc pkg-config"
checkdepends="readline-devel libyaml-devel gmp-devel libressl-devel"
short_desc="Crystal Programming Language"
maintainer="lvmbdv <ata.kuyumcu@protonmail.com>"
license="Apache-2.0"
homepage="https://crystal-lang.org/"
distfiles="
https://github.com/crystal-lang/crystal/archive/${version}.tar.gz
https://github.com/crystal-lang/shards/archive/v${_shardsversion}.tar.gz"
checksum="b4a51164763b891572492e2445d3a69b462675184ea0ccf06fcc57a070f07b80
90f230c87cc7b94ca845e6fe34f2523edcadb562d715daaf98603edfa2a94d65"
nocross="FIXME: someone needs to sort out the llvm --cxxflags for cross building"
_crystalflags="--release --no-debug --progress"
build_options="binary_bootstrap"
build_options_default="binary_bootstrap"
desc_option_binary_bootstrap="Bootstrap using precompiled binaries"
if [ "$build_option_binary_bootstrap" ]; then
case "$XBPS_MACHINE" in
x86_64)
distfiles+=" https://github.com/crystal-lang/crystal/releases/download/${_bootstrapversion}/crystal-${_bootstrapversion}-${_bootstraprevision}-linux-x86_64.tar.gz"
checksum+=" 308a5891322287852ba492e6e0dcc1484af361c189525349b6b98b531c551a65"
;;
i686)
distfiles+=" https://github.com/crystal-lang/crystal/releases/download/${_bootstrapversion}/crystal-${_bootstrapversion}-${_bootstraprevision}-linux-i686.tar.gz"
checksum+=" 394bfe422bd2e74b6c5a99d31dcd873ec3f25c3f06834e1dd779efa2a36d3143"
;;
*)
broken="cannot be built on $XBPS_MACHINE"
;;
esac
else
hostmakedepends+=" crystal"
fi
do_extract() {
mkdir -p ${wrksrc}/{shards,$(vopt_if binary_bootstrap bootstrap)}
tar xfz ${XBPS_SRCDISTDIR}/${pkgname}-${version}/${version}.tar.gz --strip-components=1 -C ${wrksrc}
tar xfz ${XBPS_SRCDISTDIR}/${pkgname}-${version}/v${_shardsversion}.tar.gz --strip-components=1 -C ${wrksrc}/shards
if [ "$build_option_binary_bootstrap" ]; then
tar xf ${XBPS_SRCDISTDIR}/${pkgname}-${version}/crystal-${_bootstrapversion}-${_bootstraprevision}-linux-${XBPS_TARGET_MACHINE}.tar.gz \
--strip-components=1 -C ${wrksrc}/bootstrap
fi
}
do_build() {
if [ -z ${disable_parallel_build} ] && [ ${XBPS_MAKEJOBS} ]; then
_crystalflags="${_crystalflags} --threads ${makejobs:2:4}"
fi
make ${makejobs} release=1 FLAGS="${_crystalflags}" \
CRYSTAL_CONFIG_PATH="lib:/usr/lib/crystal" \
CRYSTAL_CONFIG_VERSION="${version}" \
CRYSTAL_CACHE_DIR="/tmp/crystal" \
$(vopt_if binary_bootstrap PATH="${wrksrc}/bootstrap/bin:$PATH")
make ${makejobs} docs CRYSTAL_CACHE_DIR="/tmp/crystal"
cd shards
${wrksrc}/bin/crystal build ${_crystalflags} -o bin/shards src/shards.cr
}
do_check() {
make ${makejobs} spec \
CRYSTAL_CONFIG_VERSION="${version}" \
CRYSTAL_CACHE_DIR="/tmp/crystal" \
PATH=".build:$PATH"
cd shards
make test CRYSTAL_BIN="${wrksrc}/bin/crystal"
}
do_install() {
vmkdir /usr/bin
vmkdir /usr/lib/crystal
vmkdir /usr/share/doc/crystal
vmkdir /usr/share/doc/crystal/api
vmkdir /usr/share/bash-completion/completions/crystal
vmkdir /usr/share/zsh/site-functions/_crystal
vmkdir /usr/share/licenses/shards
vcopy etc/completion.bash /usr/share/bash-completion/completions/crystal
vcopy etc/completion.zsh /usr/share/zsh/site-functions/_crystal
vcopy samples /usr/share/doc/crystal
vcopy docs/* /usr/share/doc/crystal/api
vcopy src/* /usr/lib/crystal
vbin .build/crystal crystal
vlicense LICENSE
vman man/crystal.1
vbin shards/bin/shards
cp shards/LICENSE ${DESTDIR}/usr/share/licenses/shards
}