]> git.pld-linux.org Git - packages/avfs.git/blame_incremental - avfs.spec
- converted to UTF-8
[packages/avfs.git] / avfs.spec
... / ...
CommitLineData
1# TODO
2# do --enable-dav switch
3
4Summary: AFS - A Virtual Filesystem
5Summary(pl.UTF-8): AFS - wirtualny system plików
6Name: avfs
7Version: 0.9.7
8Release: 0.1
9License: GPL
10Group: Libraries
11Source0: http://dl.sourceforge.net/avf/%{name}-%{version}.tar.gz
12# Source0-md5: 88da3489b1c1d80d080ce780333cedef
13URL: http://sourceforge.net/projects/avf/
14BuildRequires: automake
15BuildRequires: expat-devel
16BuildRequires: neon-devel
17BuildRequires: openssl-devel >= 0.9.7d
18BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19
20%description
21AVFS is a system, which enables all programs to look inside archived
22or compressed files, or access remote files without recompiling the
23programs or changing the kernel.
24
25At the moment it supports floppies, tar and gzip files, zip, bzip2, ar
26and rar files, FTP sessions, http, webdav, rsh/rcp, ssh/scp. Quite a
27few other handlers are implemented with the Midnight Commander's
28external FS.
29
30%description -l pl.UTF-8
31AVFS to system, który umożliwia wszystkim programom zaglądanie do
32zarchiwizowanych lub skompresowanych plików lub dostęp do zdanych
33plików bez rekompilacji programów lub zmiany jądra.
34
35Aktualnie obsługuje dyskietki, pliki tar, gzip, zip, bzip2, ar i rar,
36sesje FTP, http, webdav, rsh/rcp, ssh/scp. Jest też trochę innych
37procedur obsługi zaimplementowanych z użyciem extfs (zewnętrznych
38systemów plików) Midnight Commandera.
39
40%package devel
41Summary: Header files for avfs library
42Summary(pl.UTF-8): Pliki nagłówkowe bibliotek avfs
43Group: Development/Libraries
44Requires: %{name} = %{version}-%{release}
45
46%description devel
47The avfs-devel package includes the header files necessary for
48developing programs using the avfs libraries.
49
50%description devel -l pl.UTF-8
51Pakiet avfs-devel zawiera pliki nagłówkowe niezbędne do budowania
52programów używających bibliotek avfs.
53
54%package static
55Summary: Static avfs libraries
56Summary(pl.UTF-8): Statyczne biblioteki avfs
57Group: Development/Libraries
58Requires: %{name} = %{version}-%{release}
59
60%description static
61This package contains the static version of avfs libraries.
62
63%description static -l pl.UTF-8
64Ten pakiet zawiera statyczną wersję bibliotek avfs.
65
66%prep
67%setup -q
68
69%build
70install /usr/share/automake/config.* .
71
72%configure \
73 --enable-library \
74 --enable-xml \
75 --with-neon \
76 --with-ssl \
77 --disable-fast-install \
78 --with-kernel=%{_kernelsrcdir}
79# --enable-dav
80# Comment:
81# I've no idea how to build this package with dav option with expat-devel.
82%{__make}
83
84%install
85rm -rf $RPM_BUILD_ROOT
86
87%{__make} install \
88 DESTDIR=$RPM_BUILD_ROOT
89
90%clean
91rm -rf $RPM_BUILD_ROOT
92
93%post -p /sbin/ldconfig
94%postun -p /sbin/ldconfig
95
96%files
97%defattr(644,root,root,755)
98%doc README
99%attr(755,root,root) %{_libdir}/*.so.*.*
100%attr(755,root,root) %{_bindir}/davpass
101%attr(755,root,root) %{_bindir}/ftppass
102%{_libdir}/%{name}
103
104%files devel
105%defattr(644,root,root,755)
106%attr(755,root,root) %{_bindir}/avfs-config
107%{_includedir}/*.h
108%{_libdir}/*.la
109
110%files static
111%defattr(644,root,root,755)
112%{_libdir}/*.a
This page took 0.054383 seconds and 4 git commands to generate.