From Fedora Project Wiki
< PackagingDrafts | Haskell
(→Library Only Template: update macros) |
No edit summary |
||
Line 7: | Line 7: | ||
<pre> | <pre> | ||
%define pkg_name someHaLib | %define pkg_name someHaLib | ||
%define | %define ghc_version 6.8.3 | ||
%define pkg_libdir %{_libdir}/ghc-%{ghc_version}/%{pkg_name}-%{version} | |||
%define pkg_libdir %{_libdir}/ | |||
# Haskell compilers do not emit debug information | # Haskell compilers do not emit debug information | ||
%define debug_package %{nil} | %define debug_package %{nil} | ||
Name: | Name: ghc-%{pkg_name} | ||
Version: 0.7 | Version: 0.7 | ||
Release: 3%{?dist} | Release: 3%{?dist} | ||
Line 23: | Line 22: | ||
Summary: Summary of %{pkg_name} library | Summary: Summary of %{pkg_name} library | ||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) | BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) | ||
Requires: | Requires: ghc = %{ghc_version} | ||
Requires: ... | Requires: ... | ||
BuildRequires: | BuildRequires: ghc = %{ghc_version}, ghc-prof = %{ghc_version}, haddock | ||
BuildRequires: ... | BuildRequires: ... | ||
Line 37: | Line 36: | ||
%description -n %{name}-prof | %description -n %{name}-prof | ||
This package contains profiling libraries for %{ | This package contains profiling libraries for ghc %{ghc_version}. | ||
Revision as of 10:37, 9 September 2008
Library Only Template
This is a sample spec file for a Haskell Cabal package. This sample demonstrates how to package a Haskell Cabal package that is only a library. It was generated automatically using cabal-rpm. It contains a few minor bugs, including missing dependency declarations. This is due to a limitation in cabal-rpm that needs to be fixed.
Consequently, it's been edited. The changes can be seen in the changelog below.
%define pkg_name someHaLib %define ghc_version 6.8.3 %define pkg_libdir %{_libdir}/ghc-%{ghc_version}/%{pkg_name}-%{version} # Haskell compilers do not emit debug information %define debug_package %{nil} Name: ghc-%{pkg_name} Version: 0.7 Release: 3%{?dist} License: BSD Group: Development/Libraries URL: http://hackage.haskell.org/cgi-bin/hackage-scripts/package/%{pkg_name} Source: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz Summary: Summary of %{pkg_name} library BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: ghc = %{ghc_version} Requires: ... BuildRequires: ghc = %{ghc_version}, ghc-prof = %{ghc_version}, haddock BuildRequires: ... %description Description of %{pkg_name} library %package -n %{name}-prof Summary: Profiling libraries for %{name} Group: Development/Libraries Requires: %{name} = %{version} %description -n %{name}-prof This package contains profiling libraries for ghc %{ghc_version}. %prep %setup -q -n %{pkg_name}-%{version} %build %cabal_configure -p --ghc %cabal_build %cabal_haddock %ghc_gen_scripts %install rm -rf ${RPM_BUILD_ROOT} %cabal_install %ghc_install_scripts %ghc_gen_filelists %{name} cd ${RPM_BUILD_ROOT}/%{_datadir}/doc/%{name}-%{version} rm -rf doc LICENSE README %clean rm -rf ${RPM_BUILD_ROOT} %pre %ghc_preinst_script %post %ghc_postinst_script %preun %ghc_preun_script %postun %ghc_postun_script %files -f %{name}.files %defattr(-,root,root,-) %doc dist/doc/html %doc LICENSE README %files -n %{name}-prof -f %{name}-prof.files %defattr(-,root,root,-) %doc LICENSE %changelog * Wed Aug 13 2008 Yaakov M. Nemoy <yankee@koan> - 0.7-3 - added URL - changed Group from default * Wed Aug 13 2008 Yaakov M. Nemoy <yankee@koan> - 0.7-2 - adds requirements list * Wed Aug 13 2008 cabal-rpm <cabal-devel@haskell.org> - 0.7-1 - spec file autogenerated by cabal-rpm