]> git.pld-linux.org Git - packages/libssh.git/commitdiff
- NEW, by Jacek 'jackass' Brzozowski <metallowiec@op.pl>
authorsparky <sparky@pld-linux.org>
Thu, 6 Jul 2006 02:16:23 +0000 (02:16 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
- fixed for lib64

Changed files:
    libssh.spec -> 1.1

libssh.spec [new file with mode: 0644]

diff --git a/libssh.spec b/libssh.spec
new file mode 100644 (file)
index 0000000..2b0a9f6
--- /dev/null
@@ -0,0 +1,86 @@
+Summary:       Library implementing the SSH protocol
+Summary(pl):   Biblioteka implementuj±ca protokó³ SSH
+Name:          libssh
+Version:       0.11
+Release:       1
+License:       LGPL
+Group:         Libraries
+Source0:       http://0xbadc0de.be/libssh/%{name}-%{version}.tgz
+# Source0-md5: ad703c4702646c83ca4fcace92c220d3
+Patch0:                %{name}-makefile.patch
+URL:           http://0xbadc0de.be/wiki/doku.php?id=libssh:libssh
+BuildRequires: autoconf
+BuildRequires: automake
+BuildRequires: intltool
+BuildRequires: libmagic-devel
+BuildRequires: libtool
+BuildRequires: openssl-devel
+BuildRequires: zlib-devel
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+The ssh library was designed to be used by programmers needing a
+working SSH implementation by the mean of a library. The complete
+control of the client is made by the programmer. With libssh, you can
+remotely execute programs, transfer files, use a secure and
+transparent tunnel for your remote programs. With its Secure FTP
+implementation, you can play with remote files easily, without
+third-party programs others than libcrypto (from openssl).
+
+%description -l pl
+Biblioteka ssh zosta³a zaprojektowana do u¿ywania przez programistów
+potrzebuj±cych dzia³aj±cej implementacji SSH w postaci biblioteki. Za
+pomoc± libssh mo¿na przesy³aæ pliki, zdalnie uruchamiaæ programy b±d¼
+te¿ tworzyæ na ich potrzeby bezpieczne i przezroczyste tunele. Dziêki
+zawartej implementacji protoko³u Secure FTP programista ma mo¿liwo¶æ
+³atwego wykonywania operacji na zdalnych plikach bez konieczno¶ci
+korzystania z dodatkowego zewnêtrznego oprogramowania poza bibliotek±
+libcrypto (pakiet openssl).
+
+%package devel
+Summary:       Header files for libssh library
+Summary(pl):   Pliki nag³ówkowe biblioteki libssh
+Group:         Development/Libraries
+Requires:      %{name} = %{version}-%{release}
+
+%description devel
+Header files for libssh library.
+
+%description devel -l pl
+Pliki nag³ówkowe biblioteki libssh.
+
+%prep
+%setup -q
+%patch0 -p1
+
+mkdir po
+
+%build
+%{__intltoolize}
+%{__gettextize}
+%{__libtoolize}
+%{__aclocal}
+%{__autoconf}
+%{__autoheader}
+%configure
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{_libdir}
+
+%{__make} install \
+       DESTDIR=$RPM_BUILD_ROOT \
+       libdir=%{_libdir}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc README
+%attr(755,root,root) %{_libdir}/lib*.so
+
+%files devel
+%defattr(644,root,root,755)
+%{_includedir}/*
This page took 0.179951 seconds and 4 git commands to generate.