]> git.pld-linux.org Git - packages/ftpfs.git/commitdiff
- Initial PLD version
authorareq <areq@pld-linux.org>
Tue, 13 Mar 2001 22:58:18 +0000 (22:58 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    ftpfs.spec -> 1.1

ftpfs.spec [new file with mode: 0644]

diff --git a/ftpfs.spec b/ftpfs.spec
new file mode 100644 (file)
index 0000000..13f753e
--- /dev/null
@@ -0,0 +1,51 @@
+Summary:       FTP File System 
+Summary(pl):   FTP File System 
+Name:          ftpfs
+Version:       0.1.1
+Release:       1
+License:       GPL
+Group:         Base/Kernel
+Group(de):     Grundsätzlich/Kern
+Group(pl):     Podstawowe/J±dro
+Source0:       http://ftp1.sourceforge.net/ftpfs/%{name}-%{version}-k2.4.tar.gz
+BuildRequires: kernel-headers >= 2.4
+BuildRequires: tar
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+FTP File System is a Linux kernel module, enhancing the VFS with FTP
+volume mounting capabilities. That is, you can "mount" FTP shared
+directories in your very personal file system and take advantage of
+local files ops.
+
+%description -l pl
+FTP File System
+
+%prep
+
+%setup  -q -n ftpfs0.1.1-k2.4
+
+%build
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+tar czf docs.tar.gz docs
+
+KERNEL_VERSION=`awk 'BEGIN {FS="\""} /^#define UTS_RELEASE/ { print $2}' < %{_includedir}/linux/version.h`
+install -D ftpfs.o $RPM_BUILD_ROOT/lib/modules/$KERNEL_VERSION/fs/ftpfs.o
+
+%post
+/sbin/depmod -a
+       
+%postun
+/sbin/depmod -a
+       
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+/lib/modules/*/*/*
+%doc docs.tar.gz
This page took 0.063153 seconds and 4 git commands to generate.