mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
21 lines
627 B
Bash
21 lines
627 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Contributor: William Rea <sillywilly@gmail.com>
|
|
pkgname=python-galago
|
|
pkgver=0.5.0
|
|
pkgrel=2
|
|
pkgdesc="A library of simple functions that are optimized for various CPUs"
|
|
arch=('i686' 'x86_64')
|
|
url="http://galago-project.org"
|
|
options=('!libtool')
|
|
license=('LGPL')
|
|
depends=('libgalago' 'python')
|
|
source=(http://galago-project.org/files/releases/source/galago-python/galago-python-$pkgver.tar.bz2)
|
|
md5sums=('27be31fcf2886aa21823caec15dc34aa')
|
|
|
|
build() {
|
|
cd $startdir/src/galago-python-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
|
|
}
|