summaryrefslogtreecommitdiff
path: root/user/nacl/APKBUILD
blob: 63abcb0a2ad17e2c8253f0e4ba43ec881b4343fb (plain) (blame)
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
# Contributor: Laurent Bercot <ska-adelie@skarnet.org>
# Maintainer: Laurent Bercot <ska-adelie@skarnet.org>
pkgname=nacl
pkgver=20110221
pkgrel=0
pkgdesc="Networking and Cryptography library"
url="https://nacl.cr.yp.to/"
arch="all"
options="!check"  # No test suite.
license="Public-Domain"
subpackages="$pkgname-dev"
source="https://hyperelliptic.org/$pkgname/$pkgname-$pkgver.tar.bz2"
_bins="curvecpclient curvecpmakekey curvecpmessage curvecpprintkey curvecpserver nacl-sha256 nacl-sha512"

build() {
	cd "$builddir"
	echo "$CC $CFLAGS" > okcompilers/c
	echo "g++ $CXXFLAGS" > okcompilers/cpp
	./do done  # 'done' is only there to work around buggy syntax highlighting >.>
}

package() {
	mkdir -p "$pkgdir/usr/bin" "$pkgdir/usr/include/$pkgname" "$pkgdir/usr/lib/$pkgname"
	_shorthostname=`hostname | sed 's/\..*//' | tr -cd '[a-z][A-Z][0-9]'`
	cd "$builddir/build/$_shorthostname"
	_okabi=`bin/okabi | head -n 1`
	for i in $_bins ; do cp "bin/$i" "$pkgdir/usr/bin/" ; done
	cp include/cpuid.h include/"$_okabi"/*.h "$pkgdir/usr/include/$pkgname/"
	ln -s . "$pkgdir/usr/include/$pkgname/$_okabi"
	cp lib/"$_okabi"/*.o lib/"$_okabi"/*.a "$pkgdir/usr/lib/$pkgname"
}

sha512sums="4c031ceffe6a28dc74b46ac003d485531f78de467c802df73c8b22ca53644dabb7d2e3080b7bdd6583f0d07ad76b6d95bc0ffdce319ca2f80ee041e6fe618656  nacl-20110221.tar.bz2"