You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
2.0 KiB
43 lines
2.0 KiB
%cabal %{_bindir}/runghc Setup
|
|
|
|
%cabal_configure \
|
|
%cabal configure --prefix=%{_prefix} --libdir=%{_libdir} --docdir=%{_docdir}/%{name}-%{version} --htmldir=%{ghcdocdir} --libsubdir='$compiler/$pkgid' %{?with_shared:--enable-shared}
|
|
|
|
%cabal_makefile \
|
|
%cabal makefile -f cabal-rpm.mk \
|
|
make -f cabal-rpm.mk %{_smp_mflags} \
|
|
%{nil}
|
|
|
|
%cabal_install %cabal copy --destdir=${RPM_BUILD_ROOT} -v
|
|
|
|
%ghcdocdir %{_docdir}/ghc/libraries/%{?pkg_name}%{!?pkg_name:%{name}}-%{version}
|
|
%ghcpkgdir %{_libdir}/ghc-%{ghc_version}/%{?pkg_name}%{!?pkg_name:%name}-%{version}
|
|
|
|
%ghc_gen_filelists() \
|
|
rm -f %1.files %1-devel.files %1-prof.files %1-doc.files \
|
|
echo '%defattr(-,root,root,-)' > %1.files \
|
|
echo '%dir %{ghcpkgdir}' >> %1.files \
|
|
echo '%attr(755,root,root) %{ghcpkgdir}/libHS%{?pkg_name}%{!?pkg_name:%name}-%{version}-ghc%{ghc_version}.so' >> %1.files \
|
|
echo '%defattr(-,root,root,-)' > %1-devel.files \
|
|
echo '%{_libdir}/ghc-%{ghc_version}/package.conf.d/%{?pkg_name}%{!?pkg_name:%name}-%{version}-*.conf' >> %1-devel.files \
|
|
find ${RPM_BUILD_ROOT}%{ghcpkgdir} -type d | sed 's/^/%dir /' >> %1-devel.files \
|
|
find ${RPM_BUILD_ROOT}%{ghcpkgdir} ! \\( -type d -o -name '*_p.a' -o -name '*.p_hi' -o -name 'libHS*.so' \\) >> %1-devel.files \
|
|
echo '%defattr(-,root,root,-)' > %1-prof.files \
|
|
find ${RPM_BUILD_ROOT}%{ghcpkgdir} \\( -name '*_p.a' -o -name '*.p_hi' \\) >> %1-prof.files \
|
|
sed -i -e "s!${RPM_BUILD_ROOT}!!g" %1.files %1-devel.files %1-prof.files \
|
|
echo '%defattr(-,root,root,-)' > %1-doc.files \
|
|
echo '%{ghcdocdir}' >> %1-doc.files \
|
|
%{nil}
|
|
|
|
%ghc_reindex_haddock ( cd %{_docdir}/ghc/libraries && [ -x "./gen_contents_index" ] && ./gen_contents_index ) || :
|
|
|
|
%ghc_version %{!?ghc_version:%(ghc --numeric-version)}%{?ghc_version}
|
|
|
|
%ghc_pkg_ver() %(ghc-pkg list --global --simple-output %1|sed -e "s/.*%1-//")
|
|
|
|
%cabal_pkg_conf \
|
|
%cabal register --gen-pkg-config \
|
|
mkdir -p $RPM_BUILD_ROOT%{_libdir}/ghc-%(ghc --numeric-version)/package.conf.d \
|
|
install --mode=0644 %{?pkg_name}%{!?pkg_name:%name}-%{version}.conf $RPM_BUILD_ROOT%{_libdir}/ghc-%{ghc_version}/package.conf.d
|
|
|