diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2017-10-24 14:14:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-24 14:14:01 -0400 |
commit | 2ec54419b923f9ce6ec480f94df3fc6c20021a4f (patch) | |
tree | ab24abb72f2724fac97be333e2ec2a083594e1c9 /dbus-python | |
parent | e6a04ddc6acb83c383fcb87c828fd1434648f0a8 (diff) | |
parent | b88166f6c33e243b5d46a6463bfd33bbb1bc51af (diff) | |
download | astroconda-contrib-2ec54419b923f9ce6ec480f94df3fc6c20021a4f.tar.gz |
Merge pull request #266 from jhunkeler/dbus-python
Initial commit; dbus-python (#57)
Diffstat (limited to 'dbus-python')
-rw-r--r-- | dbus-python/bld.bat | 1 | ||||
-rw-r--r-- | dbus-python/build.sh | 3 | ||||
-rw-r--r-- | dbus-python/meta.yaml | 39 |
3 files changed, 43 insertions, 0 deletions
diff --git a/dbus-python/bld.bat b/dbus-python/bld.bat new file mode 100644 index 0000000..39b5e1f --- /dev/null +++ b/dbus-python/bld.bat @@ -0,0 +1 @@ +%PYTHON% setup.py install diff --git a/dbus-python/build.sh b/dbus-python/build.sh new file mode 100644 index 0000000..0259769 --- /dev/null +++ b/dbus-python/build.sh @@ -0,0 +1,3 @@ +./configure --prefix=$PREFIX +make +make install diff --git a/dbus-python/meta.yaml b/dbus-python/meta.yaml new file mode 100644 index 0000000..8e2b78d --- /dev/null +++ b/dbus-python/meta.yaml @@ -0,0 +1,39 @@ +{% set name = 'dbus-python' %} +{% set version = '1.2.4' %} +{% set number = '0' %} +{% set archive = name + '-' + version + '.tar.gz' %} + +about: + home: https://cgit.freedesktop.org/dbus/dbus-python + license: GPL + summary: Python bindings for D-Bus + +package: + name: {{ name }} + version: {{ version }} + +build: + skip: true [not linux] + number: {{ number }} + +source: + fn: {{ archive }} + url: https://dbus.freedesktop.org/releases/{{ name }}/{{ archive }} + +requirements: + build: + - autoconf + - m4 + - dbus + - dbus-glib + - setuptools + - python + + run: + - dbus + - dbus-glib + - python + +test: + imports: + - dbus |