Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/membraneframework/bunch_native
Native part of the Bunch package
https://github.com/membraneframework/bunch_native
Last synced: 2 days ago
JSON representation
Native part of the Bunch package
- Host: GitHub
- URL: https://github.com/membraneframework/bunch_native
- Owner: membraneframework
- License: apache-2.0
- Created: 2018-09-03T13:47:42.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-04-03T15:17:51.000Z (7 months ago)
- Last Synced: 2024-04-04T14:33:49.856Z (7 months ago)
- Language: C
- Homepage:
- Size: 59.6 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bunch Native
[![Hex.pm](https://img.shields.io/hexpm/v/bunch_native.svg)](https://hex.pm/packages/bunch_native)
[![API Docs](https://img.shields.io/badge/api-docs-yellow.svg?style=flat)](https://hexdocs.pm/bunch_native/)
[![CircleCI](https://circleci.com/gh/membraneframework/bunch-native.svg?style=svg)](https://circleci.com/gh/membraneframework/bunch_native)Native part of the [Bunch](https://hex.pm/packages/bunch) package.
Documentation is available at [HexDocs](https://hexdocs.pm/bunch_native/).
The source code is available at [GitHub](https://github.com/membraneframework/bunch-native).
## Installation
Add the following line to your `deps` in `mix.exs`. Run `mix deps.get`.
```elixir
{:bunch_native, "~> 0.5.0"}
```All the native stuff is exported as [Bundlex](https://hex.pm/packages/bundlex) dependencies: `:lib` and `:bunch` (containing NIF-specific helpers, superset of `:lib`).
To import, add the following line to your native specification in `bundlex.exs`:
```elixir
deps: [bunch_native: :lib] # or :bunch
```
and another one in your native header file:
```c
#import // or bunch.h
```## Copyright and License
Copyright 2018, [Software Mansion](https://swmansion.com/?utm_source=git&utm_medium=readme&utm_campaign=membrane)
[![Software Mansion](https://logo.swmansion.com/logo?color=white&variant=desktop&width=200&tag=membrane-github)](https://swmansion.com/?utm_source=git&utm_medium=readme&utm_campaign=membrane)
Licensed under the [Apache License, Version 2.0](LICENSE)