source: projects/specs/trunk/a/aufs-util/aufs-util-vl.spec @ 5564

Revision 5564, 1.3 KB checked in by daisuke, 12 years ago (diff)

aufs: new package

Line 
1Name:           aufs-util
2Version:        0.0.20120127
3Release:        1%{?_dist_release}
4License:        GNU/GPLv2+     
5URL:            http://aufs.sourceforge.net/
6Group:          System/Filesystems
7Summary:        Another unionfs implementation
8Summary(ja):    もうひとつの unionfs 実装
9BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
10
11Source:         %{name}-%{version}.tar.xz
12
13Patch0:         aufs-util-install.patch
14
15BuildRequires: kernel-headers >= 3.2.2-2
16BuildRequires: glibc-static
17
18%description
19Aufs is a stackable unification file system, which can merge the
20contents of several directories (so called branches) while keeping
21their physical content separate. It allows any mix of read-only and
22read-write branches, as well as insertion and deletion of branches on
23the fly.
24
25%pre
26
27%preun
28
29%prep
30%setup -q -n %{name}-%{version}
31%patch0 -p1
32
33%build
34make %{?_smp_mflags}
35
36%install
37rm -rf $RPM_BUILD_ROOT
38make %{?_smp_mflags} install DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir}
39
40%files
41%defattr(-,root,root)
42%{_sysconfdir}/default/aufs
43/sbin/auibusy
44/sbin/auplink
45/sbin/mount.aufs
46/sbin/umount.aufs
47%{_bindir}/aubrsync
48%{_bindir}/aubusy
49%{_bindir}/auchk
50%{_libdir}/libau.so
51%{_libdir}/libau.so.*
52%{_mandir}/man5/aufs.5*
53
54%clean
55rm -rf $RPM_BUILD_ROOT
56
57%changelog
58* Fri Jan 27 2012 Daisuke SUZUKI <daisuke@linux.or.jp>  0.0.20120127-1
59- initial build for Vine Linux
60
Note: See TracBrowser for help on using the repository browser.