diff options
-rw-r--r-- | testing/py-enchant/APKBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/testing/py-enchant/APKBUILD b/testing/py-enchant/APKBUILD new file mode 100644 index 0000000000..70de0154bb --- /dev/null +++ b/testing/py-enchant/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +pkgname=py-enchant +_pkgname=pyenchant +pkgver=1.6.5 +pkgrel=0 +pkgdesc="A spellchecking library for Python" +url="http://pythonhosted.org/pyenchant/" +arch="noarch" +license="LGPL2+" +depends="python" +depends_dev="" +makedepends="python-dev py-setuptools enchant-dev" +install="" +subpackages="" +source="http://pypi.python.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" + +_builddir="$srcdir"/$_pkgname-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + python setup.py build || return 1 +} + +package() { + cd "$_builddir" + python setup.py install --prefix=/usr --root="$pkgdir" || return 1 +} + +md5sums="565014a14a52fb0195d152dd492ea948 pyenchant-1.6.5.tar.gz" +sha256sums="623f332a9fbb70ae6c9c2d0d4e7f7bae5922d36ba0fe34be8e32df32ebbb4f84 pyenchant-1.6.5.tar.gz" +sha512sums="de90f6e224880244c02537efeb38b4717973ef3aa117503ed4f582819c3ef651a1d5572c0a988bff44543e4b4b733a1a821758e329f57b40480cab97b39e8ea8 pyenchant-1.6.5.tar.gz" |