summaryrefslogtreecommitdiffstats
path: root/base/openssl/Pkgfile
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-08-07 14:31:56 +0200
committerThierry N <thierryn1 at hispeed dot ch>2009-08-07 14:31:56 +0200
commite07992417e54600a336ef2eafe09cc329893b815 (patch)
tree14101d68c53503d8eb2d8a541d05e5655608b3f1 /base/openssl/Pkgfile
parente1aad863ed7990edf8b3cccaa3b82a15d1961d6d (diff)
downloadnutyx-pakxe-e07992417e54600a336ef2eafe09cc329893b815.tar.gz
nutyx-pakxe-e07992417e54600a336ef2eafe09cc329893b815.tar.bz2
nutyx-pakxe-e07992417e54600a336ef2eafe09cc329893b815.tar.xz
nutyx-pakxe-e07992417e54600a336ef2eafe09cc329893b815.zip
Ajout de openssl#0.9.8k-1
Diffstat (limited to 'base/openssl/Pkgfile')
-rwxr-xr-xbase/openssl/Pkgfile21
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
+}