]> git.pld-linux.org Git - packages/autogen.git/blob - autogen.spec
- tabs in preamble
[packages/autogen.git] / autogen.spec
1 Summary:        Automated program generator
2 Summary(pl.UTF-8):      Zautomatyzowany generator programów
3 Name:           autogen
4 Version:        5.8.8
5 Release:        1
6 License:        GPL v.2/BSD/LGPL
7 Group:          Development
8 Source0:        http://dl.sourceforge.net/autogen/%{name}-%{version}.tar.bz2
9 # Source0-md5:  fe078c23b26753347a31c0bee6e5c82c
10 URL:            http://autogen.sourceforge.net/
11 BuildRequires:  guile-devel
12 BuildRequires:  libltdl-devel
13 BuildRequires:  libxml2-devel
14 BuildRequires:  texinfo
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 AutoGen is a tool designed for generating program files that contain
19 repetitive text with varied substitutions. Its goal is to simplify the
20 maintenance of programs that contain large amounts of repetitious
21 text. This is especially valuable if there are several blocks of such
22 text that must be kept synchronized in parallel tables.
23
24 %description -l pl.UTF-8
25 AutoGen to narzędzie zaprojektowane do generowania plików programów
26 zawierających powtarzający się tekst z różnymi podstawieniami. Celem
27 projektu jest uproszczenie zarządzania programów zawierających duże
28 ilości powtórzonego tekstu. Jest szczególnie wartościowy jeśli jest
29 kilka bloków takiego tekstu, które muszą być synchronizowane
30 równolegle.
31
32 %package devel
33 Summary:        Header files for autogen
34 Summary(pl.UTF-8):      Pliki nagłówkowe dla autogen
35 Group:          Development/Libraries
36 Requires:       %{name} = %{version}-%{release}
37
38 %description devel
39 Header files for autogen.
40
41 %description devel -l pl.UTF-8
42 Pliki nagłówkowe dla autogen.
43
44 %package static
45 Summary:        Static autogen library
46 Summary(pl.UTF-8):      Statyczna biblioteka autogen
47 Group:          Development/Libraries
48 Requires:       %{name}-devel = %{version}-%{release}
49
50 %description static
51 Static autogen library.
52
53 %description static -l pl.UTF-8
54 Statyczna biblioteka autogen.
55
56 %prep
57 %setup -q
58
59 %build
60 %configure
61 %{__make}
62
63 %install
64 rm -rf $RPM_BUILD_ROOT
65
66 %{__make} install \
67         DESTDIR=$RPM_BUILD_ROOT
68
69 %clean
70 rm -rf $RPM_BUILD_ROOT
71
72 %post
73 /sbin/ldconfig
74 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir %{_infodir} >/dev/null 2>&1
75
76 %postun
77 /sbin/ldconfig
78 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir %{_infodir} >/dev/null 2>&1
79
80 %files
81 %defattr(644,root,root,755)
82 %doc AUTHORS ChangeLog NEWS README THANKS TODO
83 %attr(755,root,root) %{_bindir}/*
84 %attr(755,root,root) %{_libdir}/lib*.so.*.*.*
85 %{_datadir}/%{name}
86 %{_infodir}/autogen.info*
87 %{_mandir}/man1/*.1*
88 %{_mandir}/man3/*.3*
89
90 %files devel
91 %defattr(644,root,root,755)
92 %attr(755,root,root) %{_libdir}/lib*.so
93 %{_libdir}/lib*.la
94 %{_includedir}/autoopts
95 %{_aclocaldir}/*.m4
96 %{_pkgconfigdir}/*.pc
97
98 %files static
99 %defattr(644,root,root,755)
100 %{_libdir}/lib*.a
This page took 0.048683 seconds and 3 git commands to generate.