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

Revision 9775, 1.7 KB checked in by Takemikaduchi, 9 years ago (diff)

kernel-4.1, xserver-1.17.2, VirtualBox?-4.3.32, etc.

Line 
1Name:           aufs-util
2Summary:        Another unionfs implementation
3Summary(ja):    もうひとつの unionfs 実装
4Version:        0.0.20151004
5Release:        1%{?_dist_release}
6
7Group:          System Environment/Base
8License:        GPLv2+ 
9URL:            http://aufs.sourceforge.net/
10
11Source:         %{name}-%{version}.tar.xz
12Patch0:         aufs-util-install.patch
13
14BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root
15BuildRequires:  kernel-headers >= 3.4.3-1
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%prep
26%setup -q -n %{name}-%{version}
27%patch0 -p1
28
29%build
30make %{?_smp_mflags}
31
32%install
33rm -rf $RPM_BUILD_ROOT
34make %{?_smp_mflags} install DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir}
35
36%clean
37rm -rf $RPM_BUILD_ROOT
38
39%files
40%defattr(-,root,root)
41%doc COPYING README sample/
42%{_sysconfdir}/default/aufs
43/sbin/auibusy
44/sbin/aumvdown
45/sbin/auplink
46/sbin/mount.aufs
47/sbin/umount.aufs
48%{_bindir}/aubrsync
49%{_bindir}/aubusy
50%{_bindir}/auchk
51%{_libdir}/libau.so
52%{_libdir}/libau.so.*
53%{_mandir}/man5/aufs.5*
54%{_mandir}/man8/aumvdown.8*
55
56%changelog
57* Wed Oct 28 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.0.20151004-1
58- updated to git aufs4.0 branch head
59
60* Sat Sep  5 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 0.0.20150511-1
61- updated to git aufs3.14 branch head
62- updated Patch0
63- changed Group to System Environment/Base
64
65* Tue Jun 19 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.20120619-1
66- update to git aufs3.0 branch head
67
68* Fri Jan 27 2012 Daisuke SUZUKI <daisuke@linux.or.jp>  0.0.20120127-1
69- initial build for Vine Linux
70
Note: See TracBrowser for help on using the repository browser.