]> git.pld-linux.org Git - packages/autogen.git/blob - autogen.spec
- initial
[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://heanet.dl.sourceforge.net/autogen/%{name}-%{version}.tar.bz2
9 # Source0-md5:  7a90b2afac2de211f03c374e92dfe9b2
10 BuildRequires:  guile-devel
11 BuildRequires:  libxml2-devel
12 BuildRequires:  texinfo
13 URL:            http://autogen.sf.net/
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 # write me
24
25 %package devel
26 Summary:        Header files for autogen
27 Summary(pl):    Pliki nag³ówkowe dla autogen
28 Group:          Development/Libraries
29 Requires:       %{name} = %{version}-%{release}
30
31 %description devel
32 Header files for autogen.
33
34 %description devel -l pl
35 Pliki nag³ówkowe dla autogen.
36
37 %package static
38 Summary:        Static autogen library
39 Summary(pl):    Statyczna biblioteka autogen
40 Group:          Development/Libraries
41 Requires:       %{name}-devel = %{version}-%{release}
42
43 %description static
44 Static autogen library.
45
46 %description static -l pl
47 Statyczna biblioteka autogen.
48
49 %prep
50 %setup -q
51
52 %build
53 %configure
54 %{__make}
55
56 %install
57 rm -rf $RPM_BUILD_ROOT
58
59 %{__make} install \
60         DESTDIR=$RPM_BUILD_ROOT
61
62 %clean
63 rm -rf $RPM_BUILD_ROOT
64
65 %post
66 /sbin/ldconfig
67 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir %{_infodir} >/dev/null 2>&1
68
69 %postun
70 /sbin/ldconfig
71 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir %{_infodir} >/dev/null 2>&1
72
73 %files
74 %defattr(644,root,root,755)
75 %doc AUTHORS ChangeLog NEWS README THANKS TODO
76 %attr(755,root,root) %{_bindir}/*
77 %attr(755,root,root) %{_libdir}/lib*.so.*.*.*
78 %{_datadir}/%{name}
79 %{_infodir}/autogen.info*
80 %{_mandir}/man1/*.1*
81 %{_mandir}/man3/*.3*
82
83 %files devel
84 %defattr(644,root,root,755)
85 %{_aclocaldir}/*.m4
86 %{_includedir}/autoopts
87 %{_libdir}/lib*.la
88 %{_libdir}/lib*.so
89 %{_pkgconfigdir}/*.pc
90
91 %files static
92 %defattr(644,root,root,755)
93 %{_libdir}/lib*.a
This page took 0.074476 seconds and 4 git commands to generate.