2008-11-25 02:52:10 +00:00
|
|
|
%define ghc_version @GHC_VERSION@
|
|
|
|
|
2008-11-25 09:15:17 +00:00
|
|
|
%define pkg_libdir %{_libdir}/ghc-%{ghc_version}/%{name}-%{version}
|
2008-12-05 09:50:10 +00:00
|
|
|
%define pkg_docdir %{_docdir}/ghc/libraries/%{name}-%{version}
|
2008-11-25 02:52:10 +00:00
|
|
|
|
|
|
|
%define build_prof 1
|
|
|
|
%define build_doc 1
|
|
|
|
|
|
|
|
# ghc does not emit debug information
|
|
|
|
%define debug_package %{nil}
|
|
|
|
|
2008-11-25 09:15:17 +00:00
|
|
|
Name: @PACKAGE@
|
|
|
|
Version: @VERSION@
|
|
|
|
Release: 1%{?dist}
|
|
|
|
Summary: *FIXME*
|
|
|
|
|
|
|
|
Group: *FIXME*
|
|
|
|
License: BSD?
|
|
|
|
URL: http://hackage.haskell.org/cgi-bin/hackage-scripts/package/%{name}
|
|
|
|
Source0: http://hackage.haskell.org/packages/archive/%{name}/%{version}/%{name}-%{version}.tar.gz
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
2008-11-25 02:52:10 +00:00
|
|
|
# ghc has only been bootstrapped on the following archs:
|
2008-11-25 09:15:17 +00:00
|
|
|
ExclusiveArch: i386 x86_64 ppc
|
|
|
|
BuildRequires: ghc = %{ghc_version}
|
2008-11-25 02:52:10 +00:00
|
|
|
%if %{build_prof}
|
2008-11-25 09:15:17 +00:00
|
|
|
BuildRequires: ghc-prof = %{ghc_version}
|
2008-11-25 02:52:10 +00:00
|
|
|
%endif
|
2008-11-25 09:15:17 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
*FIXME*
|
|
|
|
|
|
|
|
|
|
|
|
%package -n ghc-%{name}
|
|
|
|
Summary: Haskell %{name} library *FIXME*
|
|
|
|
Group: Development/Libraries
|
|
|
|
Provides: ghc-%{name}-devel = %{version}-%{release}
|
|
|
|
Requires: ghc = %{ghc_version}
|
|
|
|
Requires(post): ghc = %{ghc_version}
|
2008-11-25 02:52:10 +00:00
|
|
|
Requires(preun): ghc = %{ghc_version}
|
|
|
|
Requires(postun): ghc = %{ghc_version}
|
|
|
|
|
2008-11-25 09:15:17 +00:00
|
|
|
%description -n ghc-%{name}
|
2008-12-05 09:50:10 +00:00
|
|
|
Haskell %{name} library. *FIXME*
|
2008-11-25 02:52:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
%if %{build_prof}
|
2008-12-05 09:50:10 +00:00
|
|
|
%package -n ghc-%{name}-prof
|
|
|
|
Summary: Profiling libraries for %{name}
|
2008-11-25 02:52:10 +00:00
|
|
|
Group: Development/Libraries
|
2008-12-01 05:46:36 +00:00
|
|
|
Requires: ghc-%{name} = %{version}-%{release}
|
2008-11-25 02:52:10 +00:00
|
|
|
Requires: ghc-prof = %{ghc_version}
|
|
|
|
|
2008-12-05 09:50:10 +00:00
|
|
|
%description -n ghc-%{name}-prof
|
|
|
|
This package contains profiling libraries for %{name}.
|
2008-11-25 02:52:10 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
2008-12-05 09:50:10 +00:00
|
|
|
%setup -q
|
2008-11-25 02:52:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
%cabal_configure --ghc \
|
|
|
|
%if %{build_prof}
|
|
|
|
-p
|
|
|
|
%else
|
|
|
|
%{nil}
|
|
|
|
%endif
|
2008-12-01 05:46:36 +00:00
|
|
|
%cabal build
|
2008-11-25 02:52:10 +00:00
|
|
|
%if %{build_doc}
|
2008-12-01 05:46:36 +00:00
|
|
|
%cabal haddock
|
2008-11-25 02:52:10 +00:00
|
|
|
%endif
|
|
|
|
%ghc_gen_scripts
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%cabal_install
|
|
|
|
%ghc_install_scripts
|
2008-12-05 09:50:10 +00:00
|
|
|
%ghc_gen_filelists ghc-%{name}
|
2008-11-25 02:52:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
|
2008-12-05 09:50:10 +00:00
|
|
|
%post -n ghc-%{name}
|
2008-12-01 05:46:36 +00:00
|
|
|
%ghc_register_pkg
|
2008-11-25 02:52:10 +00:00
|
|
|
%if %{build_doc}
|
|
|
|
%ghc_reindex_haddock
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
2008-12-05 09:50:10 +00:00
|
|
|
%preun -n ghc-%{name}
|
2008-12-01 05:46:36 +00:00
|
|
|
if [ "$1" -eq 0 ] ; then
|
|
|
|
%ghc_unregister_pkg
|
|
|
|
fi
|
2008-11-25 02:52:10 +00:00
|
|
|
|
|
|
|
|
2008-12-05 09:50:10 +00:00
|
|
|
%postun -n ghc-%{name}
|
2008-11-25 02:52:10 +00:00
|
|
|
if [ "$1" -eq 0 ] ; then
|
|
|
|
%if %{build_doc}
|
|
|
|
%ghc_reindex_haddock
|
|
|
|
%endif
|
|
|
|
fi
|
|
|
|
|
2008-12-05 09:50:10 +00:00
|
|
|
%files
|
2008-11-25 02:52:10 +00:00
|
|
|
%defattr(-,root,root,-)
|
2008-11-25 03:47:45 +00:00
|
|
|
%doc LICENSE
|
2008-12-05 09:50:10 +00:00
|
|
|
%{_bindir}/%{name}
|
|
|
|
|
|
|
|
%files -n ghc-%{name} -f ghc-%{name}.files
|
|
|
|
%defattr(-,root,root,-)
|
2008-11-25 02:52:10 +00:00
|
|
|
%if %{build_doc}
|
|
|
|
%{pkg_docdir}
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%if %{build_prof}
|
2008-12-05 09:50:10 +00:00
|
|
|
%files -n ghc-%{name}-prof -f ghc-%{name}-prof.files
|
2008-11-25 02:52:10 +00:00
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
* @DATE@ @PACKAGER@ <@EMAIL@> - @VERSION@-1
|
2008-11-25 09:15:17 +00:00
|
|
|
- initial packaging for Fedora created by cabal2spec
|