mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
libraries/tls: Updated for version 1.6
This commit is contained in:
parent
16963b99c8
commit
dce37c80a6
3 changed files with 22 additions and 9 deletions
|
@ -1,12 +1,19 @@
|
|||
|-----handy-ruler----------------------------------------------------------|
|
||||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||
# up the first '|' above the ':' following the base package name, and the '|' on
|
||||
# the right side marks the last column you can put a character in. You must make
|
||||
# exactly 11 lines for the formatting to be correct. It's also customary to
|
||||
# leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
tls: TLS (An OpenSSL TCL extension)
|
||||
tls:
|
||||
tls: For use both on client and server-side as a layering for SSL sockets.
|
||||
tls: A portable extension that provides the power of OpenSSL to Tcl
|
||||
tls: programs. This extension can be used to utilize SSL encryption on
|
||||
tls: top of any valid Tcl Channel not just sockets. The sockets behave
|
||||
tls: exactly the same as channels created using Tcl's built-in socket
|
||||
tls: command, with additional options for controlling the SSL session.
|
||||
tls:
|
||||
tls:
|
||||
tls:
|
||||
tls:
|
||||
tls:
|
||||
tls:
|
||||
tls: http://tls.sourceforge.net
|
||||
tls: Homepage: http://tls.sourceforge.net
|
||||
tls:
|
||||
|
|
|
@ -17,10 +17,13 @@ OUTPUT=${OUTPUT:-/tmp}
|
|||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
|
@ -35,6 +38,7 @@ chmod -R u+w,go+r-w,a-s .
|
|||
CFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var || exit 1
|
||||
|
||||
|
@ -53,4 +57,4 @@ mkdir -p $PKG/install
|
|||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
PRGNAM="tls"
|
||||
VERSION="1.6"
|
||||
HOMEPAGE="http://tls.sourceforge.net/"
|
||||
DOWNLOAD="http://ufpr.dl.sourceforge.net/sourceforge/tls/tls1.6-src.tar.gz"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/tls/tls1.6-src.tar.gz"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM="eb326ff9e6fc3b9885aa5c72fb8df3bf"
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Bruno Vezzaro"
|
||||
EMAIL="b.vezzaro@gmail.com"
|
||||
APPROVED="dsomero"
|
||||
|
|
Loading…
Reference in a new issue