]> git.pld-linux.org Git - packages/attr.git/blob - attr.spec
- updated to 2.2.0
[packages/attr.git] / attr.spec
1 Summary:        Utility for managing filesystem extended attributes
2 Summary(pl):    Narzêdzia do zarz±dzania rozszerzonymi atrybutami fs
3 Name:           attr
4 Version:        2.2.0
5 Release:        1
6 License:        GPL
7 Group:          Applications/System
8 Source0:        ftp://linux-xfs.sgi.com/projects/xfs/download/cmd_tars/%{name}-%{version}.src.tar.gz
9 Patch0:         %{name}-miscfix.patch
10 URL:            http://oss.sgi.com/projects/xfs/
11 BuildRequires:  autoconf
12 BuildRequires:  e2fsprogs-devel
13 BuildRequires:  xfsprogs-devel >= 2.0.0
14 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %define         _bindir         /bin
17 %define         _libdir         /lib
18 %define         _libexecdir     /usr/lib
19
20 %description
21 An experimental attr command to manipulate extended attributes under
22 Linux.
23
24 %description -l pl
25 Eksperymentalna wersja polecenia attr to zarz±dzania rozszerzonymi
26 atrybutami pod systemem Linux.
27
28 %package devel
29 Summary:        Header files and libraries to use extended attributes
30 Summary(pl):    Pliki nag³ówkowe i biblioteki
31 Group:          Development/Libraries
32 Requires:       %{name} = %{version}
33
34 %description devel
35 Header files to develop software which manipulate extended attributes.
36
37 %description devel -l pl
38 Pliki nag³ówkowe potrzebne do tworzenia oprogramowania manipuluj±cego
39 rozszerzonymi atrybutami.
40
41 %package static
42 Summary:        Static libraries for extended attributes
43 Summary(pl):    Biblioteki statyczne attr
44 Group:          Development/Libraries
45 Requires:       %{name}-devel = %{version}
46
47 %description static
48 Static libraries for extended attributes.
49
50 %description static -l pl
51 Biblioteki statyczne attr.
52
53 %prep
54 %setup  -q
55 %patch0 -p1
56
57 %build
58 DEBUG="%{?debug:-DDEBUG}%{!?debug:-DNDEBUG}"; export DEBUG
59 %{__autoconf}
60 %configure
61
62 %{__make}
63
64 %install
65 rm -rf $RPM_BUILD_ROOT
66
67 DIST_ROOT="$RPM_BUILD_ROOT"
68 DIST_INSTALL=`pwd`/install.manifest
69 DIST_INSTALL_DEV=`pwd`/install-dev.manifest
70 DIST_INSTALL_LIB=`pwd`/install-lib.manifest
71 export DIST_ROOT DIST_INSTALL DIST_INSTALL_DEV DIST_INSTALL_LIB
72
73 %{__make} install DIST_MANIFEST="$DIST_INSTALL"
74 %{__make} install-dev DIST_MANIFEST="$DIST_INSTALL_DEV"
75 %{__make} install-lib DIST_MANIFEST="$DIST_INSTALL_LIB"
76
77 rm -f   $RPM_BUILD_ROOT%{_mandir}/man3/{attr_getf,attr_listf}.3
78 rm -f   $RPM_BUILD_ROOT%{_mandir}/man3/{attr_multif,attr_removef,attr_setf}.3
79 rm -f   $RPM_BUILD_ROOT%{_mandir}/man2/{f*,lgetxattr,llistxattr,lremovexattr,lsetxattr}.2
80
81 ln -sf %{_libdir}/libattr.so.1.0.1 $RPM_BUILD_ROOT%{_libexecdir}/libattr.so
82
83 echo ".so attr_get.3"   > $RPM_BUILD_ROOT%{_mandir}/man3/attr_getf.3
84 echo ".so attr_list.3"  > $RPM_BUILD_ROOT%{_mandir}/man3/attr_listf.3
85 echo ".so attr_multi.3" > $RPM_BUILD_ROOT%{_mandir}/man3/attr_multif.3
86 echo ".so attr_remove.3" > $RPM_BUILD_ROOT%{_mandir}/man3/attr_removef.3
87 echo ".so attr_set.3"   > $RPM_BUILD_ROOT%{_mandir}/man3/attr_setf.3
88
89 echo ".so getxattr.2"   > $RPM_BUILD_ROOT%{_mandir}/man2/fgetxattr.2
90 echo ".so listxattr.2"  > $RPM_BUILD_ROOT%{_mandir}/man2/flistxattr.2
91 echo ".so removexattr.2" > $RPM_BUILD_ROOT%{_mandir}/man2/fremovexattr.2
92 echo ".so setxattr.2"   > $RPM_BUILD_ROOT%{_mandir}/man2/fsetxattr.2
93 echo ".so getxattr.2"   > $RPM_BUILD_ROOT%{_mandir}/man2/lgetxattr.2
94 echo ".so listxattr.2"  > $RPM_BUILD_ROOT%{_mandir}/man2/llistxattr.2
95 echo ".so removexattr.2" > $RPM_BUILD_ROOT%{_mandir}/man2/lremovexattr.2
96 echo ".so setxattr.2"   > $RPM_BUILD_ROOT%{_mandir}/man2/lsetxattr.2
97
98 %find_lang %{name}
99
100 %clean
101 rm -rf $RPM_BUILD_ROOT
102
103 %post   -p /sbin/ldconfig
104 %postun -p /sbin/ldconfig
105
106 %files -f %{name}.lang
107 %defattr(644,root,root,755)
108 %doc doc/CHANGES
109 %attr(755,root,root) %{_bindir}/*
110 %attr(755,root,root) %{_libdir}/lib*.so.*.*
111 %{_mandir}/man[18]/*
112
113 %files devel
114 %defattr(644,root,root,755)
115 %{_libexecdir}/lib*.la
116 %attr(755,root,root) %{_libexecdir}/lib*.so
117 %{_includedir}/attr
118 %{_mandir}/man[235]/*
119
120 %files static
121 %defattr(644,root,root,755)
122 %{_libexecdir}/lib*.a
This page took 0.103316 seconds and 4 git commands to generate.