package created by autospec [release 1.2.4-1mamba;Mon Apr 13 2015]
This commit is contained in:
parent
3d2c1d496a
commit
3cecb7010d
@ -1,2 +1,5 @@
|
|||||||
# ghc-conduit
|
# ghc-conduit
|
||||||
|
|
||||||
|
conduit is a solution to the streaming data problem, allowing for production, transformation, and consumption of streams of data in constant memory.
|
||||||
|
It is an alternative to lazy I\/O which guarantees deterministic resource handling.
|
||||||
|
|
||||||
|
69
ghc-conduit.spec
Normal file
69
ghc-conduit.spec
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
%define ghc_ver %(ghc --numeric-version)
|
||||||
|
%define pkgname conduit
|
||||||
|
|
||||||
|
Name: ghc-conduit
|
||||||
|
Version: 1.2.4
|
||||||
|
Release: 1mamba
|
||||||
|
Summary: GHC library: Streaming data processing library
|
||||||
|
Group: Development/Libraries
|
||||||
|
Vendor: openmamba
|
||||||
|
Distribution: openmamba
|
||||||
|
Packager: Davide Madrisan <davide.madrisan@gmail.com>
|
||||||
|
URL: http://hackage.haskell.org/package/%{pkgname}
|
||||||
|
Source: http://hackage.haskell.org/package/conduit-%{version}/conduit-%{version}.tar.gz
|
||||||
|
License: BSD
|
||||||
|
## AUTOBUILDREQ-BEGIN
|
||||||
|
## AUTOBUILDREQ-END
|
||||||
|
BuildRequires: ghc
|
||||||
|
BuildRequires: hscolour
|
||||||
|
BuildRequires: ghc-exceptions
|
||||||
|
BuildRequires: ghc-lifted-base
|
||||||
|
BuildRequires: ghc-mmorph
|
||||||
|
BuildRequires: ghc-resourcet
|
||||||
|
BuildRequires: ghc-transformers-base
|
||||||
|
BuildRequires: ghc-void
|
||||||
|
Requires: ghc = %{ghc_ver}
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||||
|
|
||||||
|
%description
|
||||||
|
conduit is a solution to the streaming data problem, allowing for production, transformation, and consumption of streams of data in constant memory.
|
||||||
|
It is an alternative to lazy I\/O which guarantees deterministic resource handling.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n conduit-%{version}
|
||||||
|
|
||||||
|
%build
|
||||||
|
runghc Setup.lhs configure -v2 \
|
||||||
|
--prefix=%{_prefix} \
|
||||||
|
--libdir=%{_libdir} \
|
||||||
|
--libexecdir=%{_libexecdir} \
|
||||||
|
--docdir=%{_docdir}/%{name}-%{version}
|
||||||
|
|
||||||
|
runghc Setup.lhs build
|
||||||
|
runghc Setup.lhs haddock --executable --html-location=URL --hyperlink-source
|
||||||
|
|
||||||
|
%install
|
||||||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
|
runghc Setup.lhs copy --destdir=%{buildroot}
|
||||||
|
runghc Setup.lhs register \
|
||||||
|
--gen-pkg-config="%{buildroot}%{_libdir}/ghc-%{ghc_ver}/%{pkgname}-%{version}/%{pkgname}-%{version}.conf"
|
||||||
|
|
||||||
|
%clean
|
||||||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
|
|
||||||
|
%post
|
||||||
|
ghc-pkg register %{_libdir}/ghc-%{ghc_ver}/%{pkgname}-%{version}/%{pkgname}-%{version}.conf &>/dev/null || :
|
||||||
|
|
||||||
|
%preun
|
||||||
|
ghc-pkg unregister %{pkgname}-%{version} &>/dev/null || :
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{_libdir}/ghc-%{ghc_ver}/%{pkgname}-%{version}
|
||||||
|
%dir %{_docdir}/%{name}-%{version}
|
||||||
|
%{_docdir}/%{name}-%{version}/LICENSE
|
||||||
|
%{_docdir}/%{name}-%{version}/html
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Mon Apr 13 2015 Davide Madrisan <davide.madrisan@gmail.com> 1.2.4-1mamba
|
||||||
|
- package created by autospec
|
Loading…
Reference in New Issue
Block a user