diff options
Diffstat (limited to 'testing/pychecker/APKBUILD')
-rw-r--r-- | testing/pychecker/APKBUILD | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/testing/pychecker/APKBUILD b/testing/pychecker/APKBUILD new file mode 100644 index 0000000000..95cb1620a0 --- /dev/null +++ b/testing/pychecker/APKBUILD @@ -0,0 +1,38 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +pkgname=pychecker +pkgver=0.8.19 +pkgrel=0 +pkgdesc="A analyser for python source code" +url="http://pychecker.sourceforge.net/" +arch="noarch" +license="BSD" +depends="python" +depends_dev="" +makedepends="python-dev" +install="" +subpackages="" +source="http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$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="c37182863dfb09209d6ba4f38fce9d2b pychecker-0.8.19.tar.gz" |