2018-07-11 13:51:25 +00:00
|
|
|
# Maintainer: Alexander F. Rødseth <xyproto@archlinux.org>
|
|
|
|
# Contributor: Lukas Fleischer <lfleischer@archlinux.org>
|
|
|
|
# Contributor: Vesa Kaihlavirta <vesa@archlinux.org>
|
|
|
|
# Contributor: Sarah Hay <sarahhay@mb.sympatico.ca>
|
|
|
|
# Contributor: Tom Burdick <thomas.burdick@wrightwoodtech.com>
|
|
|
|
# Contributor: Ricardo Catalinas Jiménez <jimenezrick@gmail.com>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - configure with --disable-pgo to fix ARM FTBFS
|
|
|
|
|
|
|
|
pkgname=erlang-nox
|
2019-09-18 14:11:12 +00:00
|
|
|
pkgver=22.1
|
|
|
|
_docver=22.1
|
2018-07-11 13:51:25 +00:00
|
|
|
pkgrel=1
|
2018-09-28 12:58:45 +00:00
|
|
|
pkgdesc='General-purpose concurrent functional programming language (headless version)'
|
2018-11-28 13:33:49 +00:00
|
|
|
arch=(x86_64)
|
|
|
|
url='https://www.erlang.org/'
|
|
|
|
license=(Apache)
|
|
|
|
depends=(ncurses openssl)
|
|
|
|
makedepends=(fop git java-environment libxslt lksctp-tools unixodbc)
|
|
|
|
conflicts=(erlang)
|
2018-07-11 13:51:25 +00:00
|
|
|
optdepends=('erlang-unixodbc: database support'
|
|
|
|
'java-environment: for Java support'
|
|
|
|
'lksctp-tools: for SCTP support')
|
2018-11-28 13:33:49 +00:00
|
|
|
options=(staticlibs)
|
2018-07-11 13:51:25 +00:00
|
|
|
source=("git+https://github.com/erlang/otp.git#tag=OTP-$pkgver"
|
2019-09-18 14:11:12 +00:00
|
|
|
"https://www.erlang.org/download/otp_doc_man_$_docver.tar.gz"
|
2018-11-28 13:33:49 +00:00
|
|
|
epmd.conf
|
|
|
|
epmd.service
|
|
|
|
epmd.socket)
|
2018-07-11 13:51:25 +00:00
|
|
|
sha256sums=('SKIP'
|
2019-09-18 14:11:12 +00:00
|
|
|
'64f45909ed8332619055d424c32f8cc8987290a1ac4079269572fba6ef9c74d9'
|
2018-11-28 13:33:49 +00:00
|
|
|
'78ce5e67b21758c767d727e56b20502f75dc4385ff9b6c6db312d8e8506f2df2'
|
2018-07-11 13:51:25 +00:00
|
|
|
'b121ec9053fb37abca5f910a81c526f93ec30fe13b574a12209223b346886a9e'
|
2018-11-28 13:33:49 +00:00
|
|
|
'998a759e4cea4527f9d9b241bf9f32527d7378d63ea40afa38443c6c3ceaea34')
|
2018-07-11 13:51:25 +00:00
|
|
|
|
|
|
|
prepare() {
|
2019-03-14 12:38:21 +00:00
|
|
|
cd otp
|
|
|
|
./otp_build autoconf
|
2018-07-11 13:51:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd otp
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
2019-03-14 12:38:21 +00:00
|
|
|
--enable-builtin-zlib \
|
2018-07-11 13:51:25 +00:00
|
|
|
--enable-smp-support \
|
|
|
|
--with-odbc \
|
|
|
|
--disable-pgo
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
make -C otp DESTDIR="$pkgdir" install
|
|
|
|
|
|
|
|
# Documentation
|
|
|
|
install -d "$pkgdir/usr/share/doc/erlang"
|
|
|
|
install -m0644 "$srcdir/otp/README.md" \
|
|
|
|
"$srcdir"/COPYRIGHT \
|
|
|
|
"$pkgdir/usr/share/doc/erlang"
|
|
|
|
|
|
|
|
# Compressed man pages
|
|
|
|
for page in "$srcdir/man/man?/*"; do gzip $page; done
|
|
|
|
cp -r "$srcdir/man" "$pkgdir/usr/lib/erlang/"
|
|
|
|
|
|
|
|
# License
|
|
|
|
install -Dm0644 "$srcdir/otp/LICENSE.txt" \
|
|
|
|
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
|
|
|
|
|
|
|
|
# Remove files that are packaged as erlang-unixodbc
|
|
|
|
rm -rf "$pkgdir/usr/lib/erlang/"{lib/odbc*,man/man3/odbc.3.gz}
|
|
|
|
|
|
|
|
# epmd service, socket and conf
|
|
|
|
cd "$srcdir"
|
|
|
|
install -Dm644 epmd.service "$pkgdir/usr/lib/systemd/system/epmd.service"
|
|
|
|
install -Dm644 epmd.socket "$pkgdir/usr/lib/systemd/system/epmd.socket"
|
|
|
|
install -Dm644 epmd.conf "$pkgdir/etc/conf.d/epmd"
|
|
|
|
}
|
|
|
|
|
|
|
|
# getver: raw.githubusercontent.com/erlang/otp/maint/OTP_VERSION
|
2018-11-28 13:33:49 +00:00
|
|
|
# vim: ts=2 sw=2 et
|