blob: 3149a24347c1630af77b5c31e9009399309af963 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# Contributor: Michael Mason <ms13sp@gmail.com>
# Maintainer: Michael Mason <ms13sp@gmail.com>
# TODO: create subpackages
# Check how fedora does it:
# http://pkgs.fedoraproject.org/gitweb/?p=erlang.git;a=blob;f=erlang.spec
pkgname=erlang
pkgver=16.2
# note: versioning scheme is weird. the .2. -> B
# needs to be updated manually
_ver=${pkgver%%.*}B
#_ver=${pkgver%%.*}B${pkgver##*.}
pkgrel=0
pkgdesc="General-purpose programming language and runtime environment"
url="http://www.erlang.org/"
license="ERPL"
arch="all"
depends=""
makedepends="perl-dev zlib-dev ncurses-dev openssl-dev"
install=""
subpackages="$pkgname-dev"
# Patches found: http://pkgs.fedoraproject.org/gitweb/?p=erlang.git;a=tree
source="http://www.erlang.org/download/otp_src_R$_ver.tar.gz
otp-0002-Remove-rpath.patch
otp-0003-Do-not-install-C-sources.patch"
_builddir="$srcdir"/otp_src_R$_ver
prepare() {
local i
cd "$_builddir"
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
# remove shipped zlib sources
rm -f erts/emulator/zlib/*.[ch]
# Fix 664 file mode
chmod 644 lib/kernel/examples/uds_dist/c_src/Makefile
chmod 644 lib/kernel/examples/uds_dist/src/Makefile
chmod 644 lib/ssl/examples/certs/Makefile
chmod 644 lib/ssl/examples/src/Makefile
# Remove old txt files
rm -f lib/ssl/examples/certs/etc/otpCA/index.txt.old
rm -f lib/ssl/examples/certs/etc/erlangCA/index.txt.old
}
build() {
cd "$_builddir"
./configure --prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--enable-threads \
--enable-shared-zlib \
--enable-ssl=dynamic-ssl-lib \
|| return 1
make -j1 || return 1
}
package() {
cd "$_builddir"
make -j1 DESTDIR="$pkgdir" install || return 1
}
md5sums="7ee131515bc496e7522e0dec2a4c26e3 otp_src_R16B.tar.gz
2978a60b60f62ad7e46834489e81d06a otp-0002-Remove-rpath.patch
10d9990675b1be003ead2a8862fc4fe6 otp-0003-Do-not-install-C-sources.patch"
sha256sums="f01c2cfe512d3118fd3398a66bdb82bea6ad0f45b464a46a58e452264b7682cd otp_src_R16B.tar.gz
d7c494ba1f37e2f3d45d7455c8d771268bcbeba2143078b51d42ffa874a34761 otp-0002-Remove-rpath.patch
98de7e14f9d8e94c3a2d117125048f1f4c1bff242112e3149cd775a967fb6d6f otp-0003-Do-not-install-C-sources.patch"
sha512sums="ca8587df663ef3066aaca868a8f79cc002a9ee4d6d57162c75cd54d5e6dcc02a9477fa4a58110cb82f25f50f316ddaf2660010c4b43b8c7b36135b00e0e9221e otp_src_R16B.tar.gz
f1c5251d8f532322bd8cdd1fba3104ec2916dfaad42026112f1ea59bcf081725781b51f8c6c3bb3bf6af9d404e343bd0e22c3266ff2797ec01ffc91c92fdba4a otp-0002-Remove-rpath.patch
e2ec4488ce5587e2a5af67a11aca2c619db7056cbc37520ff054123faee878fb9f726a34719013245d7cfc2ec23362207018efa5bf73f98387fbd1b53b02c014 otp-0003-Do-not-install-C-sources.patch"
|