1
0
forked from pool/alex
OBS User unknown 2007-11-15 08:58:50 +00:00 committed by Git OBS Bridge
parent 1e1eeeab39
commit 75ae179a85

View File

@ -8,11 +8,17 @@ Group: Development/Languages/Haskell
Packager: Herbert Graeber <herbert@graeber-clan.de>
URL: http://www.haskell.org/alex/
Source: http://www.haskell.org/alex/dist/%{version}/alex-%{version}.tar.gz
%if 0%suse_version >= 1030
Requires: licenses
%endif
BuildRequires: ghc
BuildRequires: libxslt
BuildRequires: sgml-skel
BuildRequires: docbook-xsl-stylesheets
BuildRequires: docbook-utils
%if 0%suse_version >= 1030
BuildRequires: licenses
%endif
BuildRoot: %{_tmppath}/%{name}-%{version}-root
Prefix: /usr
@ -23,9 +29,9 @@ expressions. It is similar to the tool 'lex' or 'flex' for C/C++.
%description -l de
Alex ist ein Tool zum Erzeugen von lexkialischen Analysatoren. Er erzeugt
aus eine Beschreibung von Symbolen durch regul<EFBFBD>re Ausdr<EFBFBD>cke ein
aus eine Beschreibung von Symbolen durch reguläre Ausdrücke ein
Haskell-Modul, das aus einem Text eine Folge von Symbolen erzeugt. Alex ist
ein vergleichbar mit 'lex' bzw. 'flex' f<EFBFBD>r C und C++.
ein vergleichbar mit 'lex' bzw. 'flex' für C und C++.
%package doc
Summary: Alex Documentation
@ -36,15 +42,15 @@ Group: Development/Languages/Haskell
This is the documentation for Alex, a lexical analyser generator for Haskell.
%description doc -l de
Dieses ist Dokumentation f<EFBFBD>r Alex.
Dieses ist Dokumentation für Alex.
%prep
%setup -q -n alex-%{version}
%build
export CFLAGS="$RPM_OPT_FLAGS"
runhaskell Setup.lhs configure --prefix=%{_prefix} --libdir=%{_libdir} --datadir=%{_datadir} \
--libexecdir=%{_prefix}/lib
runhaskell Setup.lhs configure --prefix=%{_prefix} --libdir=%{_libdir} \
--libexecdir=%{_libexecdir} --datadir=%{_datadir} --docdir=%{_docdir}/%{name}
runhaskell Setup.lhs build
cd doc
test -f configure || autoreconf
@ -52,6 +58,14 @@ test -f configure || autoreconf
make html
%install
%if 0%suse_version >= 1030
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
%endif
runhaskell Setup.lhs copy --destdir=${RPM_BUILD_ROOT}
%files
@ -73,6 +87,7 @@ runhaskell Setup.lhs copy --destdir=${RPM_BUILD_ROOT}
- 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 <herbert@links2linux.de>
- Update to version 2.1.0