mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
21 lines
642 B
Bash
21 lines
642 B
Bash
# $Id: PKGBUILD 16756 2008-10-22 03:13:10Z allan $
|
|
# Maintainer: simo <simo@archlinux.org>
|
|
pkgname=python-gtkglext
|
|
pkgver=1.1.0
|
|
pkgrel=3
|
|
pkgdesc="Python language bindings for GtkGLExt"
|
|
arch=(i686 x86_64)
|
|
depends=('gtkglext' 'mesa' 'python-opengl' 'pygtk')
|
|
makedepends=('libxmu')
|
|
url="http://gtkglext.sourceforge.net/"
|
|
source=(http://downloads.sourceforge.net/gtkglext/pygtkglext-$pkgver.tar.bz2)
|
|
license="LGPL"
|
|
md5sums=('720b421d3b8514a40189b285dd91de57')
|
|
|
|
build() {
|
|
cd $startdir/src/pygtkglext-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
find $startdir/pkg -name '*.la' -exec rm {} \;
|
|
}
|