source: projects/specs/trunk/u/unionfs-utils/unionfs-utils-vl.spec @ 521

Revision 521, 2.5 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1%define name     unionfs-utils
2%define origname unionfs_utils
3
4Summary:     Utilities for Unionfs a stackable unification file system.
5Summary(ja): Unionfs (スタック可能な単一化ファイルシステム) 用ユーティリティ
6Name:        %{name}
7
8Version:     0.2.1
9Release:     1%{?_dist_release}
10Epoch:       1
11
12License:     GPL
13Group:       Applications/System
14URL:         http://www.fsl.cs.sunysb.edu/project-unionfs.html
15Source:      http://download.filesystems.org/unionfs/unionfs-utils-0.x/%{origname}-%{version}.tar.gz
16BuildRoot:   %{_tmppath}/%{name}-%{version}-root
17
18
19%description
20Unionfs is a stackable unification file system, which can appear to
21merge the contents of several directories (branches), while keeping
22their physical content separate.  Unionfs is useful for unified source
23tree management, merged contents of split CD-ROM, merged separate
24software package directories, data grids, and more.  Unionfs allows
25any mix of read-only and read-write branches, as well as insertion and
26deletion of branches anywhere in the fan-out.
27
28
29%package     devel
30Summary:     Development tools for programs using Unionfs
31Summary(ja): Unionfs を使うプログラム用開発ツール
32Group:       Development/Libraries
33Requires:    %{name} = %{epoch}:%{version}-%{release}
34
35%description devel
36Unionfs is a stackable unification file system.
37
38This package contains the header files and libraries needed for
39developing programs using the Unionfs utilities library.
40
41
42%prep
43%setup -q -n %{origname}-%{version}
44
45
46%build
47./bootstrap
48%configure
49make
50
51
52%install
53rm -rf $RPM_BUILD_ROOT
54%makeinstall
55
56
57%clean
58rm -rf $RPM_BUILD_ROOT
59%__make clean
60
61
62%files
63%defattr(-,root,root)
64%doc AUTHORS ChangeLog COPYING NEWS README
65%{_bindir}/*
66%{_libdir}/*.so.*
67%{_mandir}/man8/*
68
69
70%files devel
71%defattr(-,root,root)
72%{_includedir}/*
73%{_libdir}/*.a
74%{_libdir}/*.so
75%{_mandir}/man3/*
76
77
78%changelog
79* Sat Aug 16 2008 Shu KONNO <owa@bg.wakwak.com> 1:0.2.1-1vl5
80- applied new versioning policy, spec in utf-8
81
82* Mon Oct 22 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1:0.2.1-0vl1
83- updated to unionfs_utils 0.2.1 (separated from unionfs kernel patch itself)
84- add Epoch: 1
85- add devel subpackage
86
87* Sat Dec  9 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.2-0vl2
88- changed Group to Applications/System
89
90* Thu Aug 31 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2-0vl1
91- new upstream release
92
93* Thu Aug 18 2005 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.0.13-0vl1
94- initial build
95
96* Tue Jun 12 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.12a-0vl1
97- initial build
Note: See TracBrowser for help on using the repository browser.