diff options
author | Fabian Affolter <fabian@affolter-engineering.ch> | 2011-10-02 11:45:36 +0000 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2011-12-03 14:49:17 -0600 |
commit | 4c2734224b63d9d1f462f622cfd8acba03fbd34e (patch) | |
tree | 4b546ab40b6abb051ff1dbbd50af35a9ae67bfd1 /testing/py-yaml | |
parent | 22b4d3e0fe7cd9169840486bbc9692221083bd9d (diff) | |
download | aports-4c2734224b63d9d1f462f622cfd8acba03fbd34e.tar.bz2 aports-4c2734224b63d9d1f462f622cfd8acba03fbd34e.tar.xz |
Initial APKBUILD for py-yaml
Package description:
Python bindings for YAML
Diffstat (limited to 'testing/py-yaml')
-rw-r--r-- | testing/py-yaml/APKBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/testing/py-yaml/APKBUILD b/testing/py-yaml/APKBUILD new file mode 100644 index 000000000..29e0f3e62 --- /dev/null +++ b/testing/py-yaml/APKBUILD @@ -0,0 +1,29 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +pkgname=py-yaml +_pkgname=PyYAML +pkgver=3.10 +pkgrel=0 +pkgdesc="Python bindings for YAML" +url="http://pyyaml.org" +arch="all" +license="MIT" +depends= +depends_dev= +makedepends="libyaml-dev python-dev" +install="" +subpackages="" +source="http://pyyaml.org/download/pyyaml/$_pkgname-$pkgver.tar.gz" +_builddir="$srcdir"/$_pkgname-$pkgver + +build() { + cd "$_builddir" + python setup.py build || return 1 +} + +package() { + cd "$_builddir" + python setup.py install --prefix=/usr --root="$pkgdir" || return 1 +} + +md5sums="74c94a383886519e9e7b3dd1ee540247 PyYAML-3.10.tar.gz" |