ghc-bootstrap-helpers/ghc-bootstrap-helpers.spec

80 lines
2.0 KiB
RPMSpec

#
# spec file for package ghc-bootstrap-helpers
#
# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%define alex_ver 3.2.5
%define happy_ver 1.20.0
Name: ghc-bootstrap-helpers
Version: 1.1
Release: 0
Summary: Dependencies to build ghc
License: BSD-3-Clause AND BSD-2-Clause
URL: https://build.opensuse.org/project/show/devel:languages:haskell
Source: alex-%{alex_ver}.tar.gz
Source1: happy-%{happy_ver}.tar.gz
BuildRequires: ghc-bootstrap
# GHC dont support i586
%ifarch %{ix86}
ExclusiveArch: i586 i686
ExclusiveArch: i686
%{expand:%%global optflags %(echo "%{optflags}"|sed -e s/i586/i686/) -march=i686 -mtune=generic}
%endif
# This package is not meant to be used outside OBS
Requires: this-is-only-for-build-envs
Conflicts: alex
Conflicts: happy
%description
Prebuild alex and happy for ghc-8.8+ build
Don't use outside GHC-8.8+ build
%prep
%setup -q -c -a0 -a1
%build
pushd alex-%{alex_ver}
/opt/bin/ghc Setup.hs -o cabal
./cabal configure --prefix=%{_prefix}
./cabal build
popd
pushd happy-%{happy_ver}
/opt/bin/ghc Setup.hs -o cabal
./cabal configure --prefix=%{_prefix}
./cabal build
popd
%install
pushd alex-%{alex_ver}
./cabal copy --destdir=%{buildroot}
popd
pushd happy-%{happy_ver}
./cabal copy --destdir=%{buildroot}
popd
%files
%{_bindir}/alex
%{_bindir}/happy
%{_datadir}/*ghc*
%{_datadir}/doc/*ghc*
%changelog