28 lines
758 B
Bash
28 lines
758 B
Bash
# Template file for 'libsodium'
|
|
pkgname=libsodium
|
|
version=1.0.16
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="lt_cv_prog_compiler_static_works=yes"
|
|
short_desc="A modern and easy-to-use crypto library"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="ISC"
|
|
homepage="https://github.com/jedisct1/libsodium"
|
|
distfiles="https://github.com/jedisct1/libsodium/releases/download/${version}/${pkgname}-${version}.tar.gz"
|
|
checksum=eeadc7e1e1bcef09680fb4837d448fbdf57224978f865ac1c16745868fbd0533
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|
|
|
|
libsodium-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.a
|
|
vmove usr/lib/*.so
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|