void-packages/srcpkgs/libressl/template

46 lines
1.3 KiB
Text
Raw Normal View History

2014-07-11 18:25:41 +00:00
# Template file for 'libressl'
pkgname=libressl
2014-10-16 13:29:45 +00:00
version=2.1.1
revision=5
2014-07-14 09:07:25 +00:00
bootstrap=yes
2014-07-11 18:25:41 +00:00
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"
2014-07-11 18:25:41 +00:00
homepage="http://www.libressl.org/"
distfiles="http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${pkgname}-${version}.tar.gz"
2014-10-16 13:29:45 +00:00
checksum=fb5ada41a75b31c8dd9ff013daca57b253047ad14e43f65d8b41879b7b8e3c17
2014-07-11 18:25:41 +00:00
post_build() {
$CC -Wall $CFLAGS -Iinclude -Lcrypto/.libs $LDFLAGS ${FILESDIR}/c_rehash.c -o ${wrksrc}/c_rehash -lcrypto
}
2014-07-11 18:25:41 +00:00
post_install() {
vlicense COPYING
find ${DESTDIR}/usr/share/man/man1 -type f ! -name openssl.1 -delete
2014-07-11 18:25:41 +00:00
}
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
2014-07-14 06:26:11 +00:00
vmove usr/lib/pkgconfig
2014-07-11 18:25:41 +00:00
vmove usr/share/man/man3
}
}
libressl-openssl_package() {
short_desc+=" - utilities"
provides="openssl-${version}_${revision}"
replaces="libressl<2.0.1_2 openssl>=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 ${wrksrc}/c_rehash
}
}