Skip to content

Commit

Permalink
Add KmerCamel (#51245)
Browse files Browse the repository at this point in the history
* Add KmerCamel.

* Fixed kmercamel build.

* KmerCamel: pinning exports.

* KmerCamel do not use build fn.
  • Loading branch information
OndrejSladky authored Oct 8, 2024
1 parent a60c239 commit 83e229c
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
5 changes: 5 additions & 0 deletions recipes/kmercamel/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

make CXX="${CXX} ${CXXFLAGS} ${CPPFLAGS} ${LDFLAGS}"
install -d "${PREFIX}/bin"
install kmercamel "${PREFIX}/bin/"
38 changes: 38 additions & 0 deletions recipes/kmercamel/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{% set version = "1.0.2" %}
{% set sha256 = "b37449ef3f5d1bb6a45e24e4eba8102c40e689aa4e3eccc119d30a998b5790fa" %}

package:
name: kmercamel
version: {{ version }}

source:
url: https://github.com/OndrejSladky/kmercamel/archive/v{{ version }}.tar.gz
sha256: {{ sha256 }}

build:
number: 0
run_exports:
- {{ pin_subpackage('kmercamel', max_pin="x") }}


requirements:
build:
- make
- {{ compiler('cxx') }}
host:
- zlib
- glpk
run:
- zlib
- glpk

test:
commands:
- kmercamel -h 2>&1 | grep "KmerCamel"

about:
home: https://github.com/OndrejSladky/kmercamel/
license: MIT
license_file: LICENSE.txt
summary: KmerCamel🐫 - compressing k-mer sets using masked superstrings

0 comments on commit 83e229c

Please sign in to comment.