abcBridge alternatives and similar packages
Based on the "Data" category.
Alternatively, view abcBridge alternatives based on common mentions on social networks and blogs.
-
semantic-source
Parsing, analyzing, and comparing source code across many languages -
lens
Lenses, Folds, and Traversals - Join us on web.libera.chat #haskell-lens -
code-builder
Packages for defining APIs, running them, generating client code and documentation. -
text
Haskell library for space- and time-efficient operations over Unicode text. -
unordered-containers
Efficient hashing-based container types -
cassava
A CSV parsing and encoding library optimized for ease of use and high performance -
compendium-client
Mu (μ) is a purely functional framework for building micro services. -
holmes
A reference library for constraint-solving with propagators and CDCL. -
binary
Efficient, pure binary serialisation using ByteStrings in Haskell. -
resource-pool
A high-performance striped resource pooling implementation for Haskell -
primitive
This package provides various primitive memory-related operations. -
discrimination
Fast linear time sorting and discrimination for a large class of data types -
IORefCAS
A collection of different packages for CAS based data structures. -
audiovisual
Extensible records, variants, structs, effects, tangles -
dependent-map
Dependently-typed finite maps (partial dependent products) -
dependent-sum
Dependent sums and supporting typeclasses for comparing and displaying them -
reflection
Reifies arbitrary Haskell terms into types that can be reflected back into terms -
orgmode-parse
Attoparsec parser combinators for parsing org-mode structured text! -
streaming
An optimized general monad transformer for streaming applications, with a simple prelude of functions -
text-icu
This package provides the Haskell Data.Text.ICU library, for performing complex manipulation of Unicode text. -
scientific
Arbitrary-precision floating-point numbers represented using scientific notation
Static code analysis for 29 languages.
Do you think we are missing an alternative of abcBridge or a related project?
README
abcBridge: Haskell bindings for ABC
Directory structure:
src/ Haskell bindings source tree.
cbits/ C source tree for bindings.
include/ Header files used.
tests/ Test scripts.
scripts/ Build system scripts.
Building
We have attempted to make cabal install
work out of the box. They
have been tested on 64-bit Mac OS X with XCode, 32-bit and 64-bit CentOS
Linux 5.x and 6.x, and 32-bit and 64-bit Windows XP with MinGW. On Windows,
the 64-bit build is less well tested than the 32-bit build, so
try a 32-bit build if you have trouble with the 64-bit build.
ABC Sources
The main task of the build system is to retrieve and build the ABC C sources before building the Haskell bridge. We do this by downloading the latest version of a branch of the ABC project from BitBucket. See [Setup.hs](./Setup.hs) for the logic relating to this step, including the URL from which the sources are fetched. If you run "cabal sdist", ABC sources will be fetched and unpacked, and then repacked into a combined source distribution with the Haskell code. The resulting sdist tarball can be compiled without needing to fetch ABC sources from BitBucket.
The task of building the ABC sources is performed by the "scripts/build-abc.sh". It mostly involves selecting some compiler flags depending on the arch and OS and then invoking the ABC makefile.
Run "scripts/clean-abc.sh" if you want to remove all ABC source artifacts and force a redownload from the BitBucket project.
Cutting a Hackage release
See README.releases for instructions.