]> git.pld-linux.org Git - packages/fuse-mysqlfs.git/blob - fuse-mysqlfs.spec
- new
[packages/fuse-mysqlfs.git] / fuse-mysqlfs.spec
1 Summary:        FUSE filesystem using MySQL as a storage
2 Name:           fuse-mysqlfs
3 Version:        0.4.0
4 Release:        0.1
5 License:        GPL v2
6 Group:          Applications/System
7 Source0:        http://dl.sourceforge.net/project/mysqlfs/mysqlfs/%{version}/mysqlfs-%{version}.tar.bz2
8 # Source0-md5:  7998aa0e11fc50e50b54c02994110e72
9 URL:            http://sourceforge.net/projects/mysqlfs/
10 BuildRequires:  libfuse-devel
11 BuildRequires:  mysql-devel >= 5.0
12 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14 %description
15 MySQLfs is Linux userspace filesystem which stores data in a MySQL
16 database. It uses FUSE to interface with the kernel.
17
18 %prep
19 %setup -q -n mysqlfs-%{version}
20
21 %build
22 %configure
23 %{__make}
24
25 %install
26 rm -rf $RPM_BUILD_ROOT
27
28 %{__make} install \
29         DESTDIR=$RPM_BUILD_ROOT
30
31 %clean
32 rm -rf $RPM_BUILD_ROOT
33
34 %files
35 %defattr(644,root,root,755)
36 %doc AUTHORS ChangeLog NEWS README
37 %attr(755,root,root) %{_bindir}/mysqlfs
38 %{_datadir}/mysqlfs-%{version}/install.sql
39 %{_datadir}/mysqlfs-%{version}/schema.sql
This page took 0.06433 seconds and 3 git commands to generate.