]> git.pld-linux.org Git - packages/autogen.git/blob - autogen.spec
- 5.8
[packages/autogen.git] / autogen.spec
1 Summary:        Automated program generator
2 Summary(pl):    Zautomatyzowany generator programów
3 Name:           autogen
4 Version:        5.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:  94cc4ac62a4799b336e702b02dd3511d
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
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):    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
42 Pliki nag³ówkowe dla autogen.
43
44 %package static
45 Summary:        Static autogen library
46 Summary(pl):    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
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.060051 seconds and 3 git commands to generate.