diff --git a/README.md b/README.md index ea6a543..78f6421 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # lyx2html +A very simple Lyx to HTML converter. As the name suggests, it takes a ".lyx" document as input and generates an HTML-file following a few simple rules. + diff --git a/lyx2html.spec b/lyx2html.spec new file mode 100644 index 0000000..9428029 --- /dev/null +++ b/lyx2html.spec @@ -0,0 +1,51 @@ +Name: lyx2html +Version: 0.2 +Release: 3mamba +Summary: A very simple Lyx to HTML converter +Group: Graphical Desktop/Applications/Office +Vendor: openmamba +Distribution: openmamba +Packager: Tiziana Ferro +URL: http://www.netmeister.org/apps/lyx2html/ +Source: http://www.netmeister.org/apps/%{name}-%{version}.tar.gz +License: GPL +BuildRoot: %{_tmppath}/%{name}-%{version}-root +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +## AUTOBUILDREQ-END + +%description +A very simple Lyx to HTML converter. As the name suggests, it takes a ".lyx" document as input and generates an HTML-file following a few simple rules. + +%prep +%setup -q + +%build +%make + +%install +[ "%{buildroot}" != / ] && rm -rf %{buildroot} + +mkdir -p %{buildroot}%{_bindir} +mkdir -p %{buildroot}%{_mandir}/man1 +install -m 755 lyx2html %{buildroot}%{_bindir} +install -m 755 lyx2html.1 %{buildroot}%{_mandir}/man1 + +%clean +[ "%{buildroot}" != / ] && rm -rf %{buildroot} + +%files +%defattr(-,root,root) +%doc CHANGES COPYING README +%{_bindir}/lyx2html +%{_mandir}/man1/lyx2html.1.gz + +%changelog +* Tue Aug 27 2013 Automatic Build System 0.2-3mamba +- automatic rebuild by autodist + +* Fri Oct 03 2008 Tiziana Ferro 0.2-2mamba +- update mantainer, vendor, distribution +- update buildrequirements list +* Tue Jan 10 2006 Alessandro Ramazzina 0.2-1qilnx +- package created by autospec