blob: 3f3388d5950531611971452e4417f326f8d4f444 (
plain)
1 # Description: A modern, portable, easy to use crypto library
2 # URL: https://github.com/jedisct1/libsodium
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on:
5
6 name=libsodium
7 version=1.0.18
8 release=1
9 source=(https://github.com/jedisct1/libsodium/archive/1.0.18-RELEASE/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version-RELEASE
13 ./configure --prefix=/usr
14 make
15 make DESTDIR=$PKG install
16 }
|