40 lines
1.3 KiB
Bash
40 lines
1.3 KiB
Bash
# Template file for 'erlang'
|
|
pkgname=erlang
|
|
version=18.3
|
|
revision=2
|
|
wrksrc=otp_src_${version}
|
|
build_style=gnu-configure
|
|
configure_args="--enable-smp-support"
|
|
hostmakedepends="perl libxslt"
|
|
makedepends="ncurses-devel unixodbc-devel libressl-devel zlib-devel
|
|
$(vopt_if x11 'wxGTK-devel glu-devel')"
|
|
short_desc="Concurrent functional programming language developed by Ericsson"
|
|
maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
|
|
license="Apache-2.0"
|
|
homepage="http://www.erlang.org/"
|
|
distfiles="http://www.erlang.org/download/otp_src_${version}.tar.gz
|
|
http://www.erlang.org/download/otp_doc_man_${version}.tar.gz"
|
|
checksum="fdab8129a1cb935db09f1832e3a7d511a4aeb2b9bb3602ca6a7ccb9730d5c9c3
|
|
978be100e9016874921b3ad1a65ee46b7b6a1e597b8db2ec4b5ef436d4c9ecc2"
|
|
|
|
build_options="x11"
|
|
|
|
pre_configure() {
|
|
if [ "$CROSS_BUILD" ]; then
|
|
# Build the bootstrap compiler for the host platform.
|
|
env - PATH=/usr/bin:/usr/sbin ./configure --enable-bootstrap-only
|
|
env - PATH=/usr/bin:/usr/sbin HOME=$HOME make ${makejobs}
|
|
configure_args+=" --build=$(erts/autoconf/config.guess)"
|
|
export erl_xcomp_sysroot=/usr/${XBPS_CROSS_TRIPLET}
|
|
fi
|
|
}
|
|
|
|
post_install() {
|
|
vmkdir usr/share/man
|
|
vmkdir usr/lib/erlang/man
|
|
vcopy ../man/man1 usr/share/man
|
|
vcopy ../man/man3 usr/lib/erlang/man
|
|
vcopy ../man/man4 usr/lib/erlang/man
|
|
vcopy ../man/man7 usr/lib/erlang/man
|
|
}
|