forked from backtracking/bibtex2html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bibtex2html.spec
52 lines (40 loc) · 1.45 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
46
47
48
49
50
51
52
Summary: Convert BibTeX source files to HTML amongst other things
Name: bibtex2html
Version: 1.66
Release: 1
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=/usr
make
%install
rm -rf $RPM_BUILD_ROOT
make install prefix=$RPM_BUILD_ROOT/%{_prefix}
cd $RPM_BUILD_ROOT
# Following command generates a list of files that were installed
find -type f | sed 's/^\.//; s/\(\.[0-9]\)$/\1.gz/;' > %{_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
* Thu Feb 19 2004 Edward Grace <[email protected]> 1.66-1
- Trivial modification. Update version numbers to build latest version.
* Fri Oct 10 2003 Michael Daum <[email protected]> 1.65-3
- fixed install prefix
- fixed manifesting compressed manual pages on suse
* 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.