diff options
author | Thierry N <thierryn1 at hispeed dot ch> | 2009-08-07 14:31:56 +0200 |
---|---|---|
committer | Thierry N <thierryn1 at hispeed dot ch> | 2009-08-07 14:31:56 +0200 |
commit | e07992417e54600a336ef2eafe09cc329893b815 (patch) | |
tree | 14101d68c53503d8eb2d8a541d05e5655608b3f1 /base/openssl/Pkgfile | |
parent | e1aad863ed7990edf8b3cccaa3b82a15d1961d6d (diff) | |
download | nutyx-extra-e07992417e54600a336ef2eafe09cc329893b815.tar.gz nutyx-extra-e07992417e54600a336ef2eafe09cc329893b815.tar.bz2 nutyx-extra-e07992417e54600a336ef2eafe09cc329893b815.tar.xz nutyx-extra-e07992417e54600a336ef2eafe09cc329893b815.zip |
Ajout de openssl#0.9.8k-1
Diffstat (limited to 'base/openssl/Pkgfile')
-rwxr-xr-x | base/openssl/Pkgfile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/base/openssl/Pkgfile b/base/openssl/Pkgfile new file mode 100755 index 000000000..ff9560401 --- /dev/null +++ b/base/openssl/Pkgfile @@ -0,0 +1,21 @@ +# Description: Secure Sockets Layer and Transport Layer Security tools +# URL: http://www.openssl.org/ +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch +# Depends on: + +name=openssl +version=0.9.8k +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/share/man MANSUFFIX=ssl install +cp -v -r certs $PKG/etc/ssl +} |