blob: 1778d813a8a4d5d736342cb36efc0cf1b3951b4a (
plain)
1 # Description: A python binding for the libasyncns
2 # URL: https://launchpad.net/libasyncns-python
3 # Maintainer: Mikhail Kolesnik, mike at openbunker dot org
4 # Depends on: libasyncns python
5
6 name=libasyncns-python
7 version=0.7.1
8 release=2
9 source=(http://launchpad.net/libasyncns-python/trunk/$version/+download/$name-$version.tar.bz2)
10
11 build() {
12 cd $name-$version
13 python setup.py install --root=$PKG
14 find $PKG -name '*egg-info' | xargs rm
15 }
|