blob: 0f05af59c2e0fccb5a7ec538c784bd3da7c07026 (
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
|
# Maintainer: Vadim Yanitskiy <fixeria@osmocom.org>
# Contributor: Christoph Gysin <christoph.gysin@gmail.com>
# Contributor: Pau Espin Pedrol <pespin@espeweb.net>
# Based on https://aur.archlinux.org/packages/titan-git
pkgname=eclipse-titan
_pkgname=titan.core
pkgver=10.1.2
pkgrel=2
pkgdesc="A free and open source (FOSS) compiler both for TTCN-3 and for ASN.1"
arch=('i686' 'x86_64')
url="https://projects.eclipse.org/projects/tools.titan"
license=('EPL-2.0')
makedepends=(
'bison'
'flex'
'java-environment'
'perl'
)
depends=(
'expect'
'libedit'
'libxml2'
'ncurses'
'openssl'
)
conflicts=('titan-git')
source=("https://gitlab.eclipse.org/eclipse/titan/${_pkgname}/-/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz"
eclipse-titan.profile)
sha256sums=('577a474597cadc648d87987a456a13bc63a5b9665445d1b3365add68654b08b7'
'ac28aeffaa7931d2bf1945778b088d6764e566fc04aa307d1bc3d2fb95f558cd')
# Currently we cannot build even old versions due to broken dependencies in
# the TITAN's hand-written Makefiles. Building the 'dep' target first helps
# to overcome the majority of them, but it still does not compile due to
# various compilation errors. Disabling 'buildflags' and 'makeflags' helps.
# See also https://gitlab.eclipse.org/eclipse/titan/titan.core/-/issues/595.
options=(!lto !buildflags !makeflags)
prepare() {
cd "${srcdir}/${_pkgname}-${pkgver}"
rm -f Makefile.personal
echo "STRIP := touch -c" >> Makefile.personal
echo "TTCN3_DIR := /opt/eclipse-titan" >> Makefile.personal
echo "JDKDIR := /usr/lib/jvm/$(archlinux-java get)" >> Makefile.personal
}
build() {
cd "${srcdir}/${_pkgname}-${pkgver}"
make dep
make
}
package() {
cd "${srcdir}/${_pkgname}-${pkgver}"
make \
TTCN3_DIR=$pkgdir/opt/eclipse-titan \
ETCDIR=$pkgdir/opt/eclipse-titan/etc \
MANDIR=$pkgdir/usr/share/man \
DOCDIR=$pkgdir/usr/share/doc/eclipse-titan \
HELPDIR=$pkgdir/usr/share/doc/eclipse-titan/html \
DEMODIR=$pkgdir/usr/share/doc/eclipse-titan/demo \
install
# Fix reference to $pkgdir in the demo Makefile
sed -i "s#TTCN3_DIR = .*#TTCN3_DIR = /opt/eclipse-titan#" \
"$pkgdir/usr/share/doc/eclipse-titan/demo/Makefile"
install -D $srcdir/eclipse-titan.profile $pkgdir/etc/profile.d/eclipse-titan.sh
}
|