core/openssl/Pkgfile

18 lines
488 B
Plaintext
Raw Normal View History

2006-02-23 15:26:10 +00:00
# Description: Secure Sockets Layer and Transport Layer Security tools
# URL: http://www.openssl.org/
# Maintainer: Per Lid<69>n <per@fukt.bth.se>
name=openssl
2006-02-23 18:03:35 +00:00
version=0.9.8a
2006-02-23 15:26:10 +00:00
release=1
source=(http://www.openssl.org/source/$name-$version.tar.gz)
build() {
cd $name-$version
./config --prefix=/usr --openssldir=/etc/ssl shared
make
make INSTALL_PREFIX=$PKG MANDIR=/usr/man MANSUFFIX=ssl install
find $PKG -name "*fips*" -exec rm -f {} \;
chmod -R +w $PKG
}