mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
19 lines
588 B
Bash
19 lines
588 B
Bash
# $Id: PKGBUILD 33686 2009-04-04 15:59:22Z alexanderf $
|
|
# Maintainer: Alexander Fehr <pizzapunk gmail com>
|
|
|
|
pkgname=python-logilab-common
|
|
pkgver=0.39.0
|
|
pkgrel=1
|
|
pkgdesc="Useful miscellaneous modules used by Logilab projects"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.logilab.org/project/logilab-common"
|
|
license=('GPL')
|
|
depends=('python-egenix-mx-base')
|
|
source=(ftp://ftp.logilab.org/pub/common/logilab-common-$pkgver.tar.gz)
|
|
md5sums=('9b49a710eb08225919aceedb84f1f28c')
|
|
|
|
build() {
|
|
cd "$srcdir/logilab-common-$pkgver"
|
|
|
|
python setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
|
}
|