aboutsummaryrefslogtreecommitdiffstats
path: root/community/jimtcl/APKBUILD
blob: 362620965721fef3902b03e0d4e4d27575e2cf33 (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
78
79
80
81
82
83
84
85
86
87
88
89
90
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=jimtcl
pkgver=0.81
pkgrel=1
pkgdesc="An open-source, small footprint implementation of Tcl"
url="https://github.com/msteveb/jimtcl"
arch="all"
license="BSD-2-Clause"
depends_dev="openssl1.1-compat-dev"
makedepends="
	$depends_dev
	readline-dev
	sqlite-dev
	tcl
	zlib-dev
	"
options="net"  # fix check with abuild rootbld
subpackages="$pkgname-dbg $pkgname-readline $pkgname-sqlite3 $pkgname-dev $pkgname-doc"
source="https://github.com/msteveb/jimtcl/archive/$pkgver/jimtcl-$pkgver.tar.gz
	tests-skip-exec2-3.2.patch
	tests-skip-socket.patch
	openssl3.patch
	"

prepare() {
	default_prepare

	# tty tests fail on builders - no tty available there.
	rm tests/tty.test

	cp -r "$builddir" "$builddir-static"
}

build() {
	_build --shared

	cd "$builddir-static"
	_build
}

_build() {
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--docdir=/usr/share/doc/$pkgname \
		--full \
		--with-mod=sqlite3,readline,rlprompt \
		"$@"
	make -j1
}

check() {
	make check
}

package() {
	make install DESTDIR="$pkgdir"
	ln -s /usr/lib/libjim.so.$pkgver "$pkgdir"/usr/lib/libjim.so

	install -m644 "$builddir-static"/libjim.a -t "$pkgdir"/usr/lib/
}

readline() {
	pkgdesc="Interface to readline and Tcl wrapper for Jim Tcl"
	depends="$pkgname=$pkgver-r$pkgrel"

	amove usr/lib/jim/readline.so
	amove usr/lib/jim/rlprompt.tcl
}

sqlite3() {
	pkgdesc="Interface to sqlite3 for Jim Tcl"
	depends="$pkgname=$pkgver-r$pkgrel"

	amove usr/lib/jim/sqlite3.so
}

dev() {
	default_dev
	amove usr/bin/build-jim-ext
}

sha512sums="
5f798b15fd32673e2e2769e25c4dfeee43696e5bbd2d3ec3fd2f312fa49da9ef057fb4de81a10d3812dc07fb2e40ed79924b024e537e064d3213b10e06a416b6  jimtcl-0.81.tar.gz
09afa356d5b8330bbb4444c319edb4fb4caae18747b924a3cb82cd7d9062566b6180b05e4938b9e33c3bf76acf2b28a9dbdedc10b9c241dcb99ff07828c4f507  tests-skip-exec2-3.2.patch
cbc3f08d23cfe7ebd45e677a09e7178436e728a965ab7af44d6e27621049c1cdc82768c4e81397004be3486bf3f767684601ec28d3584ea14d3dde69ccdd8bdb  tests-skip-socket.patch
b6fd377696af167317fbe3b54882ffa8abcd42aac86d4c87b7fa5c48d5eb7a463476ecbc79972c7ed35bb0b2245e57f62d93f40bd7118348d68287af55c58a83  openssl3.patch
"