mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
added community/erlang-nox
This commit is contained in:
parent
bd8ef5c302
commit
1e80abaa06
4 changed files with 105 additions and 0 deletions
82
community/erlang-nox/PKGBUILD
Normal file
82
community/erlang-nox/PKGBUILD
Normal file
|
@ -0,0 +1,82 @@
|
|||
# $Id$
|
||||
# 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
|
||||
pkgver=21.0.2
|
||||
_docver=21.0
|
||||
pkgrel=1
|
||||
pkgdesc='General-purpose concurrent functional programming language developed by Ericsson (headless version)'
|
||||
arch=('x86_64')
|
||||
url='http://www.erlang.org/'
|
||||
license=('Apache')
|
||||
depends=('ncurses' 'openssl')
|
||||
makedepends=('fop' 'git' 'java-environment' 'libxslt' 'lksctp-tools' 'unixodbc')
|
||||
conflicts=('erlang')
|
||||
optdepends=('erlang-unixodbc: database support'
|
||||
'java-environment: for Java support'
|
||||
'lksctp-tools: for SCTP support')
|
||||
options=('staticlibs')
|
||||
source=("git+https://github.com/erlang/otp.git#tag=OTP-$pkgver"
|
||||
"http://www.erlang.org/download/otp_doc_man_$_docver.tar.gz"
|
||||
'epmd.service' 'epmd.socket' 'epmd.conf')
|
||||
sha256sums=('SKIP'
|
||||
'10bf0e44b97ee8320c4868d5a4259c49d4d2a74e9c48583735ae0401f010fb31'
|
||||
'b121ec9053fb37abca5f910a81c526f93ec30fe13b574a12209223b346886a9e'
|
||||
'998a759e4cea4527f9d9b241bf9f32527d7378d63ea40afa38443c6c3ceaea34'
|
||||
'78ce5e67b21758c767d727e56b20502f75dc4385ff9b6c6db312d8e8506f2df2')
|
||||
|
||||
prepare() {
|
||||
cd otp
|
||||
|
||||
./otp_build autoconf
|
||||
}
|
||||
|
||||
build() {
|
||||
cd otp
|
||||
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--enable-smp-support \
|
||||
--with-odbc \
|
||||
--enable-builtin-zlib \
|
||||
--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
|
||||
# vim: ts=2 sw=2 et:
|
3
community/erlang-nox/epmd.conf
Normal file
3
community/erlang-nox/epmd.conf
Normal file
|
@ -0,0 +1,3 @@
|
|||
#ERL_EPMD_ADDRESS=
|
||||
#ERL_EPMD_PORT=4369
|
||||
#ERL_EPMD_RELAXED_COMMAND_CHECK=
|
11
community/erlang-nox/epmd.service
Normal file
11
community/erlang-nox/epmd.service
Normal file
|
@ -0,0 +1,11 @@
|
|||
[Unit]
|
||||
Description=Erlang Port Mapper Daemon
|
||||
|
||||
[Service]
|
||||
EnvironmentFile=/etc/conf.d/epmd
|
||||
ExecStart=/usr/bin/epmd -daemon $EPMD_OPTS
|
||||
ExecStop=/usr/bin/epmd -kill
|
||||
Type=forking
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
9
community/erlang-nox/epmd.socket
Normal file
9
community/erlang-nox/epmd.socket
Normal file
|
@ -0,0 +1,9 @@
|
|||
[Unit]
|
||||
Conflicts=epmd.service
|
||||
|
||||
[Socket]
|
||||
ListenStream=4369
|
||||
Accept=no
|
||||
|
||||
[Install]
|
||||
WantedBy=sockets.target
|
Loading…
Reference in a new issue