From: Paul Brossier Date: Wed, 19 Aug 2015 12:42:27 +0000 (+0200) Subject: scripts/conda: add minimal binstar scripts X-Git-Tag: 0.4.4~301^2~32 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=a5eb2b330abe688fd233335c54cadcdd22f6321a;p=aubio.git scripts/conda: add minimal binstar scripts --- diff --git a/scripts/conda/.binstar.yml b/scripts/conda/.binstar.yml new file mode 100644 index 00000000..3d000f49 --- /dev/null +++ b/scripts/conda/.binstar.yml @@ -0,0 +1 @@ +package: aubio diff --git a/scripts/conda/build.sh b/scripts/conda/build.sh new file mode 100644 index 00000000..8e819024 --- /dev/null +++ b/scripts/conda/build.sh @@ -0,0 +1,7 @@ +python waf configure --prefix=$PREFIX +python waf build +python waf install +pushd python/ +python setup.py build +python setup.py install +popd diff --git a/scripts/conda/meta.yaml b/scripts/conda/meta.yaml new file mode 100644 index 00000000..37068ba3 --- /dev/null +++ b/scripts/conda/meta.yaml @@ -0,0 +1,35 @@ +package: + name: aubio + version: 0.4.3 + +source: + path: ../../ + #fn: aubio-0.4.2.tar.bz2 + #url: http://aubio.org/pub/aubio-0.4.2.tar.bz2 + #md5: c0f6d8355e92669722501c3a762ba548 + #sha1: aa0d31c58deb92ab03edfc417d903f50f78444d0 + +requirements: + build: + - python + - setuptools + - numpy + run: + - python + - numpy + +test: + commands: + - aubioonset --help + - aubiocut --help + - aubiopitch --help + imports: + - aubio + +build: + number: 1 + +about: + home: https://aubio.org/ + license: GPL 3 + summary: "a library for audio labelling"