# # spec file for package ghc-X11 # # Copyright (c) 2005-2009 Herbert Graeber # # This file and all modifications and additions to the pristine # package are under the same license as the package itself. # # norootforbuild # ghc does not emit debug information %global debug_package %{nil} Name: alex Version: 2.3.1 Release: 0 Summary: The lexer generator for Haskell Group: Development/Languages/Haskell License: BSD3 URL: http://www.haskell.org/alex/ Source: %{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-root Requires: licenses BuildRequires: ghc BuildRequires: libxslt BuildRequires: sgml-skel BuildRequires: docbook-xsl-stylesheets BuildRequires: docbook-utils BuildRequires: fop %if 0%{?suse_version} >= 1100 BuildRequires: java-1_6_0-openjdk %else BuildRequires: java-1_5_0-sun %endif BuildRequires: licenses Prefix: /usr %description Alex is a tool for generating lexical analysers in Haskell, given a description of the tokens to be recognised in the form of regular expressions. It is similar to the tool 'lex' or 'flex' for C/C++. %package doc Summary: Alex Documentation Group: Development/Languages/Haskell Requires: %{name} = %{version} %description doc Alex is a tool for generating lexical analysers in Haskell, given a description of the tokens to be recognised in the form of regular expressions. It is similar to the tool 'lex' or 'flex' for C/C++. This is the documentation for Alex, a lexical analyser generator for Haskell. %prep %setup -q %build %cabal_configure --docdir=%{_docdir}/alex %cabal build pushd doc autoreconf ./configure --prefix=%{_prefix} --libdir=%{_libdir} make html pdf popd %install %cabal_install mkdir -p %{buildroot}%{_mandir}/man1 sed ' s|/@VERSION@|%{version}| s|@DOCDIR@|%{_datadir}/doc/%{name}| s|@DATADIR@|%{_datadir}/alex| ' < doc/alex.1.in | gzip >%{buildroot}%{_mandir}/man1/%{name}.1.gz mkdir -p %{buildroot}%{_datadir}/doc/%{name} cp -r doc/%{name} %{buildroot}%{_datadir}/doc/%{name}/html cp -r doc/%{name}.pdf %{buildroot}%{_datadir}/doc/%{name} for FILE in LICENSE ; do MD5SUM=$(md5sum $FILE | sed 's/ .*//') if test -f /usr/share/doc/licenses/md5/$MD5SUM ; then ln -sf /usr/share/doc/licenses/md5/$MD5SUM $FILE fi done %files %defattr(-,root,root) %doc ANNOUNCE LICENSE README TODO examples %doc %{_mandir}/man1/%{name}.1.gz %{_bindir}/%{name} %{_datadir}/%{name}-%{version} %files doc %defattr (-,root, root) %{_datadir}/doc/%{name} %changelog * Thu Apr 17 2009 Herbert Graeber - 2.3.1 - Add man page - Save HTML data only, not Makfile, etc. - Add pdf file of documentation * Thu Apr 16 2009 Herbert Graeber - 2.3.1 - Fix location of documentation * Sat Feb 28 2009 Herbert Graeber - 2.3.1 - Changed to haskell packaging conventions * Wed Dec 4 2008 Herbert Graeber 2.3.1 - Update to version 2.3.1 * Wed Oct 29 2008 Herbert Graeber 2.3 - Update to version 2.3 * Thu Nov 15 2007 Herbert Graeber 2.2.0 - Update to version 2.2.0 * Cabal 1.2 is now required. * ByteString wrappers: use Alex to lex ByteStrings directly. - Use shared license file * Thu Jan 18 2007 Herbert Graeber A 2.1.0 - Update to version 2.1.0 * Wed Sep 06 2006 Herbert Graeber - Haddock isn't needed for build * Mon Sep 04 2006 Herbert Graeber - Use docbook-utils for html documentation - Require sgml-skel for build * Tue Aug 29 2006 - Herbert Graeber - Disabled ps documentation (no fop without java) * Mon Aug 28 2006 - Herbert Graeber - Enabled full documentation build * Mon Aug 28 2006 - Herbert Graeber - Move to the SUSE Build Service - Disabled extended documentation for the first build * Thu Apr 20 2006 - Herbert Graeber - Rebuild with GHC 6.4.2 * Wed Sep 21 2005 - Herbert Graeber - Recompiled with ghc 6.4.1 * Wed Apr 20 2005 - Herbert Graeber - Changes for x86_64 * Thu Apr 07 2005 - Herbert Graeber - update to version 2.0.1 for ghc 6.4 compatibility