45 lines
1.2 KiB
Text
45 lines
1.2 KiB
Text
# Template file for 'libressl'
|
|
pkgname=libressl
|
|
version=2.0.5
|
|
revision=7
|
|
bootstrap=yes
|
|
build_style=gnu-configure
|
|
short_desc="FREE version of the SSL/TLS protocol forked from OpenSSL"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="OpenSSL-License, SSLeay-License, ISC"
|
|
homepage="http://www.libressl.org/"
|
|
distfiles="http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${pkgname}-${version}.tar.gz"
|
|
checksum=3f5463b5deb93efd2ac4e23a20612a1ccf3299a569d03880bb204c90647dfc9a
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
mv ${DESTDIR}/usr/share/man/man1/{passwd.1,libressl-passwd.1}
|
|
}
|
|
|
|
libressl-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
conflicts="openssl-devel>=0"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.a
|
|
vmove usr/lib/*.so
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/share/man/man3
|
|
}
|
|
}
|
|
|
|
libressl-openssl_package() {
|
|
short_desc+=" - utilities"
|
|
# required by c_rehash
|
|
depends="perl"
|
|
provides="openssl-${version}_${revision} openssl-crehash-${version}_${revision}"
|
|
replaces="libressl<2.0.1_2 openssl>=0 openssl-crehash>=0"
|
|
conf_files="/etc/ssl/openssl.cnf"
|
|
pkg_install() {
|
|
vinstall ${FILESDIR}/openssl.cnf 644 etc/ssl
|
|
vmove usr/bin
|
|
vmove usr/share/man/man1
|
|
vbin ${FILESDIR}/c_rehash
|
|
}
|
|
}
|