aboutsummaryrefslogtreecommitdiffstats
path: root/main/libretls/APKBUILD
blob: c8379fae94d0fd79eda94d8c50d816904ea15dfa (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
# Contributor: TBK <alpine@jjtc.eu>
# Maintainer: Ariadne Conill <ariadne@dereferenced.org>
pkgname=libretls
pkgver=3.3.4
pkgrel=1
pkgdesc="port of libtls from libressl to openssl"
arch="all"
url="https://git.causal.agency/libretls/"
license="ISC AND (BSD-3-Clause OR MIT)"
depends="ca-certificates-bundle"
depends_dev="openssl-dev"
base_deps="autoconf automake libtool"
makedepends="$depends_dev $base_deps"
makedepends_host="openssl-dev"
makedepends_build="$base_deps"

subpackages="$pkgname-doc $pkgname-static $pkgname-dev"
source="https://causal.agency/libretls/libretls-$pkgver.tar.gz
	test_program.c"

prepare() {
	default_prepare

	# Override the LIBTLS_VERSION to be 2:*:*, as libtls-standalone was 1:0:0.
	# also make sure the LIBTLS version is different from upstream libressl
	# so they can be installed in parallel
	local _current _rev _age
	IFS=: read _current _rev _age < LIBTLS_VERSION
	printf "%d:%d:%d\n" $(( $_current - 18 )) $_rev $_age > LIBTLS_VERSION

	autoreconf
}

build() {
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr
	make all
}

package() {
	make DESTDIR="$pkgdir" install
}

check() {
	set -x

	# shellcheck disable=SC2046
	gcc -o test_program "$srcdir"/test_program.c -I"$builddir"/include -L"$builddir"/.libs -ltls $(pkgconf --cflags --libs openssl)
	LD_LIBRARY_PATH="$builddir"/.libs ./test_program

	set +x
}

sha512sums="
ae6f1b7bf9f61948e88ce87c93921b2b27652d85a95062f38abe7dfbb30d40c974c79b7d6faab43b3a987abff5e761b5c2a1982af8cc1511fb3136c580a0e3d6  libretls-3.3.4.tar.gz
71d36fe25c95a0a45497e3f699b01dddcaae9053dd1b1e2419df94272c47024cf6516c51c902129201061601b04a72551904b15a332a4cf53358983b5db73618  test_program.c
"