]> git.pld-linux.org Git - packages/augeas.git/blob - augeas.spec
- updated to 0.8.1
[packages/augeas.git] / augeas.spec
1 Summary:        Augeas - configuration editing tool
2 Summary(pl.UTF-8):      Augeas - narzędzie do modyfikowania konfiguracji
3 Name:           augeas
4 Version:        0.8.1
5 Release:        1
6 License:        LGPL v2.1+
7 Group:          Applications/System
8 Source0:        http://augeas.net/download/%{name}-%{version}.tar.gz
9 # Source0-md5:  62d47bdc60e175f93aed3b81cb8e2785
10 Patch0:         %{name}-pld_interfaces.patch
11 URL:            http://augeas.net
12 BuildRequires:  libselinux-devel
13 BuildRequires:  readline-devel
14 Requires:       %{name}-libs = %{version}-%{release}
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 Augeas is a library and command line tool that focuses on the most
19 basic problem in handling Linux configurations programmatically:
20 editing actual configuration files in a controlled manner.
21
22 %description -l pl.UTF-8
23 Augeas to biblioteka i działające z linii poleceń narzędzie
24 skupiające się na najbardziej podstawowym problemie przy programowej
25 obsłudze konfiguracji Linuksa: modyfikowaniu w sposób kontrolowany
26 właściwych plików konfiguracyjnych.
27
28 %package libs
29 Summary:        Augeas libraries
30 Summary(pl.UTF-8):      Biblioteki augeasa
31 Group:          Libraries
32
33 %description libs
34 This package contains the augeas libraries.
35
36 %description libs -l pl.UTF-8
37 Ten pakiet zawiera biblioteki augeasa.
38
39 %package devel
40 Summary:        Augeas development files
41 Summary(pl.UTF-8):      Pliki programistyczne augeasa
42 Group:          Development/Libraries
43 Requires:       %{name}-libs = %{version}-%{release}
44 Requires:       libselinux-devel
45
46 %description devel
47 This package contains the include files used to develop using augeas
48 APIs.
49
50 %description devel -l pl.UTF-8
51 Ten pakiet zawiera pliki nagłówkow służące do programowania z użyciem
52 API augeasa.
53
54 %package static
55 Summary:        Augeas static libraries
56 Summary(pl.UTF-8):      Statyczne biblioteki augeasa
57 Group:          Development/Libraries
58 Requires:       %{name}-devel = %{version}-%{release}
59
60 %description static
61 This package contains augeas static libraries.
62
63 %description static -l pl.UTF-8
64 Ten pakiet zawiera statyczne biblioteki augeasa.
65
66 %prep
67 %setup -q
68 %patch0 -p1
69
70 %build
71 %configure \
72         --disable-silent-rules
73
74 %{__make}
75
76 %install
77 rm -rf $RPM_BUILD_ROOT
78 %{__make} install \
79         DESTDIR=$RPM_BUILD_ROOT
80
81 %clean
82 rm -rf $RPM_BUILD_ROOT
83
84 %post   libs -p /sbin/ldconfig
85 %postun libs -p /sbin/ldconfig
86
87 %files
88 %defattr(644,root,root,755)
89 %doc AUTHORS ChangeLog NEWS README
90 %attr(755,root,root) %{_bindir}/augparse
91 %attr(755,root,root) %{_bindir}/augtool
92 %attr(755,root,root) %{_bindir}/fadot
93 %{_datadir}/augeas
94 %{_mandir}/man1/augparse.1*
95 %{_mandir}/man1/augtool.1*
96 #%{_datadir}/vim/vimfiles/ftdetect/augeas.vim
97 #%{_datadir}/vim/vimfiles/syntax/augeas.vim
98
99 %files libs
100 %defattr(644,root,root,755)
101 %attr(755,root,root) %{_libdir}/libaugeas.so.*.*.*
102 %attr(755,root,root) %ghost %{_libdir}/libaugeas.so.0
103 %attr(755,root,root) %{_libdir}/libfa.so.*.*.*
104 %attr(755,root,root) %ghost %{_libdir}/libfa.so.1
105
106 %files devel
107 %defattr(644,root,root,755)
108 %attr(755,root,root) %{_libdir}/libaugeas.so
109 %attr(755,root,root) %{_libdir}/libfa.so
110 %{_libdir}/libaugeas.la
111 %{_libdir}/libfa.la
112 %{_includedir}/augeas.h
113 %{_includedir}/fa.h
114 %{_pkgconfigdir}/augeas.pc
115
116 %files static
117 %defattr(644,root,root,755)
118 %attr(755,root,root) %{_libdir}/libaugeas.a
119 %attr(755,root,root) %{_libdir}/libfa.a
This page took 0.144472 seconds and 4 git commands to generate.