-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathbibtex2html.spec
47 lines (35 loc) · 1.12 KB
/
bibtex2html.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Summary: Convert BibTeX source files to HTML amongst other things
Name: bibtex2html
Version: 1.65
Release: 2
License: GNU/GPL
Group: Applications/Publishing
URL: http://www.lri.fr/~filliatr/bibtex2html/
Source0: %{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot
Packager: Edward Grace <[email protected]>
%description
Tools for filtering BibTeX files, generating HTML files from the
BibTeX sources and generating BibTeX files from LaTeX aux files.
%prep
%setup -q
%build
./configure --prefix=$RPM_BUILD_ROOT
make
%install
rm -rf $RPM_BUILD_ROOT
make install
cd $RPM_BUILD_ROOT
# Following command generates a list of files that were installed
find -type f | sed 's/^\.//' > %{_tmppath}/%{name}-%{version}-MANIFEST
%clean
rm -rf $RPM_BUILD_ROOT
# Use the generated file list to name the files in the package.
%files -f %{_tmppath}/%{name}-%{version}-MANIFEST
%defattr(-,root,root,-)
%doc
%changelog
* Tue Oct 7 2003 Edward Grace <[email protected]> 1.65-2
- Second build, this time I have included more info on the package
* Tue Oct 7 2003 Edward Grace <[email protected]>
- Initial build.