You are not logged in.
TLSWrap is a TLS/SSL FTP wrapper/proxy for UNIX and Windows, allowing you to use your favourite FTP client with any TLS/SSL-enabled FTP server.
I need it to connect Netbeans to a FTP Server which only allows TLS Connections.
Last edited by sagattarii (2009-05-29 12:50:02)
Offline
Try this:
pkgname=tlswrap
pkgver=1.04
pkgrel=1
pkgdesc="A TLS/SSL FTP wrapper/proxy that allows you to use your favourite FTP client with any TLS/SSL-enabled FTP server"
arch=('i686' 'x86_64')
url="http://tlswrap.sunsite.dk/"
license=('custom')
depends=('openssl')
source=(http://tlswrap.sunsite.dk/$pkgname-$pkgver.tar.gz)
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr
make || return 1
install -Dm755 tlswrap $pkgdir/usr/bin/tlswrap
install -Dm644 README $pkgdir/usr/share/tlswrap/README
install -Dm644 COPYING $pkgdir/usr/share/licenses/tlswrap/COPYING
}
md5sums=('68a4d937c1e817fa3056751e8902b691')Not tested, as I don't know any tls/ssl ftp servers to point it at.
Offline