forked from pool/ghc-base64-bytestring
a1d4d8ebab
Upgraded to 0.1.1.1 from upstream. Fixes performance regression. Required by yesod Web framework. OBS-URL: https://build.opensuse.org/request/show/115073 OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-base64-bytestring?expand=0&rev=3
103 lines
2.8 KiB
RPMSpec
103 lines
2.8 KiB
RPMSpec
# For Haskell Packaging Guidelines see:
|
|
# - https://fedoraproject.org/wiki/Packaging:Haskell
|
|
# - https://fedoraproject.org/wiki/PackagingDrafts/Haskell
|
|
|
|
# Copyright (c) 2012 Herbert Graeber <herbert@graeber-clan.de>
|
|
#
|
|
# 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 http://bugs.opensuse.org/
|
|
#
|
|
|
|
%global pkg_name base64-bytestring
|
|
|
|
# common part of summary for all the subpackages
|
|
%global common_summary Haskell %{pkg_name} library
|
|
|
|
# main description used for all the subpackages
|
|
%global common_description A %{pkg_name} library for Haskell.
|
|
|
|
Name: ghc-%{pkg_name}
|
|
Version: 0.1.1.1
|
|
Release: 1
|
|
Summary: %{common_summary}
|
|
|
|
Group: Development/Libraries/Other
|
|
License: BSD-3-Clause
|
|
# BEGIN cabal2spec
|
|
URL: http://hackage.haskell.org/package/%{pkg_name}
|
|
Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz
|
|
ExclusiveArch: %{ix86} x86_64 %{ghc_arches}
|
|
BuildRequires: ghc-Cabal-devel
|
|
BuildRequires: ghc-rpm-macros
|
|
%if %{undefined without_hscolour}
|
|
BuildRequires: hscolour
|
|
%endif
|
|
BuildRequires: ghc-bytestring-devel
|
|
# END cabal2spec
|
|
# BR any C devel dependency here
|
|
# list ghc-*-prof dependencies:
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
%{common_description}
|
|
|
|
|
|
%package -n ghc-%{pkg_name}-devel
|
|
Summary: Development files for %{common_summary}
|
|
Group: Development/Libraries/Other
|
|
# BEGIN cabal2spec
|
|
%{?ghc_devel_requires}
|
|
Obsoletes: ghc-%{pkg_name}-prof < %{version}-%{release}
|
|
Provides: ghc-%{pkg_name}-prof = %{version}-%{release}
|
|
# END cabal2spec
|
|
# remember to require any C devel dependency here
|
|
# Haskell devel dependencies are autogenerated by ghc-deps.sh
|
|
|
|
%description -n ghc-%{pkg_name}-devel
|
|
%{common_description}
|
|
|
|
This package contains the development files.
|
|
|
|
|
|
%prep
|
|
%setup -q -n %{pkg_name}-%{version}
|
|
|
|
|
|
%build
|
|
#%%define cabal_configure_options -f "opt1 -opt2 ..."
|
|
%ghc_lib_build
|
|
|
|
|
|
%install
|
|
%ghc_lib_install
|
|
|
|
|
|
%post -n ghc-%{pkg_name}-devel
|
|
%ghc_pkg_recache
|
|
|
|
|
|
%postun -n ghc-%{pkg_name}-devel
|
|
%ghc_pkg_recache
|
|
|
|
|
|
%if %{undefined ghc_without_shared}
|
|
%files -n ghc-%{pkg_name} -f ghc-%{pkg_name}.files
|
|
%defattr(-,root,root,-)
|
|
%endif
|
|
|
|
|
|
%files -n ghc-%{pkg_name}-devel -f ghc-%{pkg_name}-devel.files
|
|
%defattr(-,root,root,-)
|
|
|
|
|
|
%changelog
|