mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
20 lines
567 B
Bash
20 lines
567 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Maintainer: Ben Mazer <blm@groknil.org>
|
|
|
|
pkgname=adns-python
|
|
pkgver=1.2.1
|
|
pkgrel=2
|
|
pkgdesc="python bindings for adns"
|
|
arch=('i686' 'x86_64')
|
|
url="http://code.google.com/p/adns-python/"
|
|
depends=('adns' 'python')
|
|
makedepends=()
|
|
license=('GPL2')
|
|
source=(http://adns-python.googlecode.com/files/adns-python-$pkgver.tar.gz)
|
|
md5sums=('12cc7ad1b0ee8d818005e9ca4def758b')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
python setup.py install --root=$startdir/pkg/
|
|
}
|