From e91f8f90c9c686e3f34b314bdeafedcd912b570f Mon Sep 17 00:00:00 2001 From: Michael Sarahan Date: Mon, 14 Mar 2016 08:16:39 -0500 Subject: [PATCH] add auditwheel recipe --- python/auditwheel/build.sh | 3 +++ python/auditwheel/meta.yaml | 24 ++++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 python/auditwheel/build.sh create mode 100644 python/auditwheel/meta.yaml diff --git a/python/auditwheel/build.sh b/python/auditwheel/build.sh new file mode 100644 index 000000000..8e25a1455 --- /dev/null +++ b/python/auditwheel/build.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +$PYTHON setup.py install diff --git a/python/auditwheel/meta.yaml b/python/auditwheel/meta.yaml new file mode 100644 index 000000000..32954a6b2 --- /dev/null +++ b/python/auditwheel/meta.yaml @@ -0,0 +1,24 @@ +package: + name: auditwheel + version: "1.1.0" + +source: + fn: auditwheel-1.1.0.tar.gz + url: https://pypi.python.org/packages/source/a/auditwheel/auditwheel-1.1.0.tar.gz + md5: f42ec0ed1ce5e09e5ef5d3ce4f9826e6 + +build: + noarch_python: True + skip: True # [not linux] + +requirements: + build: + - python + - setuptools + + run: + - python + +about: + license: MIT License + summary: Linux wheel verification tool to ensure compatibility