This commit is contained in:
parent
1e1eeeab39
commit
75ae179a85
25
alex.spec
25
alex.spec
@ -8,11 +8,17 @@ Group: Development/Languages/Haskell
|
|||||||
Packager: Herbert Graeber <herbert@graeber-clan.de>
|
Packager: Herbert Graeber <herbert@graeber-clan.de>
|
||||||
URL: http://www.haskell.org/alex/
|
URL: http://www.haskell.org/alex/
|
||||||
Source: http://www.haskell.org/alex/dist/%{version}/alex-%{version}.tar.gz
|
Source: http://www.haskell.org/alex/dist/%{version}/alex-%{version}.tar.gz
|
||||||
|
%if 0%suse_version >= 1030
|
||||||
|
Requires: licenses
|
||||||
|
%endif
|
||||||
BuildRequires: ghc
|
BuildRequires: ghc
|
||||||
BuildRequires: libxslt
|
BuildRequires: libxslt
|
||||||
BuildRequires: sgml-skel
|
BuildRequires: sgml-skel
|
||||||
BuildRequires: docbook-xsl-stylesheets
|
BuildRequires: docbook-xsl-stylesheets
|
||||||
BuildRequires: docbook-utils
|
BuildRequires: docbook-utils
|
||||||
|
%if 0%suse_version >= 1030
|
||||||
|
BuildRequires: licenses
|
||||||
|
%endif
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||||
Prefix: /usr
|
Prefix: /usr
|
||||||
|
|
||||||
@ -23,9 +29,9 @@ expressions. It is similar to the tool 'lex' or 'flex' for C/C++.
|
|||||||
|
|
||||||
%description -l de
|
%description -l de
|
||||||
Alex ist ein Tool zum Erzeugen von lexkialischen Analysatoren. Er erzeugt
|
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
|
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
|
%package doc
|
||||||
Summary: Alex Documentation
|
Summary: Alex Documentation
|
||||||
@ -36,15 +42,15 @@ Group: Development/Languages/Haskell
|
|||||||
This is the documentation for Alex, a lexical analyser generator for Haskell.
|
This is the documentation for Alex, a lexical analyser generator for Haskell.
|
||||||
|
|
||||||
%description doc -l de
|
%description doc -l de
|
||||||
Dieses ist Dokumentation f<EFBFBD>r Alex.
|
Dieses ist Dokumentation für Alex.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n alex-%{version}
|
%setup -q -n alex-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export CFLAGS="$RPM_OPT_FLAGS"
|
export CFLAGS="$RPM_OPT_FLAGS"
|
||||||
runhaskell Setup.lhs configure --prefix=%{_prefix} --libdir=%{_libdir} --datadir=%{_datadir} \
|
runhaskell Setup.lhs configure --prefix=%{_prefix} --libdir=%{_libdir} \
|
||||||
--libexecdir=%{_prefix}/lib
|
--libexecdir=%{_libexecdir} --datadir=%{_datadir} --docdir=%{_docdir}/%{name}
|
||||||
runhaskell Setup.lhs build
|
runhaskell Setup.lhs build
|
||||||
cd doc
|
cd doc
|
||||||
test -f configure || autoreconf
|
test -f configure || autoreconf
|
||||||
@ -52,6 +58,14 @@ test -f configure || autoreconf
|
|||||||
make html
|
make html
|
||||||
|
|
||||||
%install
|
%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}
|
runhaskell Setup.lhs copy --destdir=${RPM_BUILD_ROOT}
|
||||||
|
|
||||||
%files
|
%files
|
||||||
@ -73,6 +87,7 @@ runhaskell Setup.lhs copy --destdir=${RPM_BUILD_ROOT}
|
|||||||
- Update to version 2.2.0
|
- Update to version 2.2.0
|
||||||
* Cabal 1.2 is now required.
|
* Cabal 1.2 is now required.
|
||||||
* ByteString wrappers: use Alex to lex ByteStrings directly.
|
* ByteString wrappers: use Alex to lex ByteStrings directly.
|
||||||
|
- Use shared license file
|
||||||
|
|
||||||
* Thu Jan 18 2007 Herbert Graeber <herbert@links2linux.de>
|
* Thu Jan 18 2007 Herbert Graeber <herbert@links2linux.de>
|
||||||
- Update to version 2.1.0
|
- Update to version 2.1.0
|
||||||
|
Loading…
Reference in New Issue
Block a user