diff --git a/README.md b/README.md index 7b79e57..73d3318 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # ghc-attoparsec +A fast parser combinator library, aimed particularly at dealing efficiently with network protocols and complicated text/binary file formats.0 + diff --git a/ghc-attoparsec.spec b/ghc-attoparsec.spec new file mode 100644 index 0000000..a3bf405 --- /dev/null +++ b/ghc-attoparsec.spec @@ -0,0 +1,63 @@ +%define ghc_ver %(ghc --numeric-version) +%define pkgname attoparsec + +Name: ghc-attoparsec +Version: 0.11.3.4 +Release: 1mamba +Summary: GHC library: Fast combinator parsing for bytestrings and text +Group: Development/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Davide Madrisan +URL: http://hackage.haskell.org/package/%{pkgname} +Source: http://hackage.haskell.org/package/attoparsec-%{version}/attoparsec-%{version}.tar.gz +License: BSD +## AUTOBUILDREQ-BEGIN +## AUTOBUILDREQ-END +BuildRequires: ghc +BuildRequires: hscolour +BuildRequires: ghc-scientific +Requires: ghc = %{ghc_ver} +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +A fast parser combinator library, aimed particularly at dealing efficiently with network protocols and complicated text/binary file formats.0 + +%prep +%setup -q -n attoparsec-%{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 +* Sun Apr 12 2015 Davide Madrisan 0.11.3.4-1mamba +- package created by autospec