]> git.lyx.org Git - lyx.git/blob - development/lyx.spec.in
Added Liviu Andronic, and modified generate_contributions.py to match what was in...
[lyx.git] / development / lyx.spec.in
1 %define frontend @RPM_FRONTEND@
2 %define version_suffix @RPM_VERSION_SUFFIX@
3
4 Summary: A WYSIWYM (What You See Is What You Mean) frontend to LaTeX
5 Name: @PACKAGE@
6 Version: @VERSION@
7 Release: 1_%{frontend}
8 License: see COPYING file
9 Group: Applications/Publishing
10 URL: http://www.lyx.org/
11 Packager: Kayvan A. Sylvan <kayvan@sylvan.com>
12 Source: ftp://ftp.lyx.org/pub/lyx/stable/%{name}-%{version}.tar.gz
13 BuildRoot: %{_tmppath}/%{name}-%{version}-root
14 Icon: %{name}.png
15 Prefix: %{_prefix}
16 Obsoletes: tetex-lyx
17
18 %description
19 LyX is a modern approach to writing documents which breaks with the
20 obsolete "typewriter paradigm" of most other document preparation
21 systems.
22
23 It is designed for people who want professional quality output
24 with a minimum of time and effort, without becoming specialists in
25 typesetting.
26
27 The major innovation in LyX is WYSIWYM (What You See Is What You Mean).
28 That is, the author focuses on content, not on the details of formatting.
29 This allows for greater productivity, and leaves the final typesetting
30 to the backends (like LaTeX) that are specifically designed for the task.
31
32 With LyX, the author can concentrate on the contents of his writing,
33 and let the computer take care of the rest.
34
35 This is LyX built with the %{frontend} frontend.
36
37 %prep
38 %setup
39
40 %build
41 unset LINGUAS || true
42 ./configure --with-frontend=%{frontend} --prefix=%{_prefix} \
43         --mandir=%{_mandir} --bindir=%{_bindir} --datadir=%{_datadir} \
44         --without-warnings --disable-debug --enable-optimization=-O2 \
45         %{version_suffix}
46 make
47
48 %install
49 unset LINGUAS || true
50 rm -rf ${RPM_BUILD_ROOT}
51 install -d -m 755 ${RPM_BUILD_ROOT}
52 make DESTDIR=${RPM_BUILD_ROOT} install
53 gzip -f9 ${RPM_BUILD_ROOT}%{_mandir}/man?/*
54
55 #
56 # Set up the lyx-specific class files where TeX can see them
57 #
58 TEXMF=%{_datadir}/texmf
59 mkdir -p ${RPM_BUILD_ROOT}${TEXMF}/tex/latex
60 mv ${RPM_BUILD_ROOT}%{_datadir}/%{name}/tex \
61       ${RPM_BUILD_ROOT}/${TEXMF}/tex/latex/%{name}
62
63 #
64 # Miscellaneous files
65 #
66 # Don't use %{name}.png, this will not work with --version-suffix
67 cp -a lib/images/lyx.png ${RPM_BUILD_ROOT}%{_datadir}/%{name}/images/
68
69 %clean
70 rm -rf ${RPM_BUILD_ROOT}
71
72 %post
73 # Make TeX understand where LyX-specific packages are
74 texhash
75
76 %postun
77 # Fix the TeX file hash
78 #
79 texhash
80
81 %files
82 %defattr(-,root,root)
83 %doc ABOUT-NLS ANNOUNCE COPYING
84 %doc README UPGRADING NEWS
85 %doc lib/CREDITS
86 %{_bindir}/*
87 %{_mandir}/man?/*
88 %{_datadir}/locale/*/LC_MESSAGES/*
89 %{_datadir}/%{name}
90 %{_datadir}/texmf/tex/latex/%{name}