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