mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
24 lines
778 B
Bash
24 lines
778 B
Bash
# $Id: PKGBUILD 54237 2009-10-07 12:18:32Z andrea $
|
|
# Maintainer: Douglas Soares de Andrade <douglas@archlinux.org>
|
|
# Contributor: Eric Belanger <eric@archlinux.org>
|
|
# Contributor: Michal Krenek <mikos@sg1.cz>
|
|
|
|
pkgname=python-qscintilla
|
|
pkgver=2.4
|
|
pkgrel=2
|
|
pkgdesc="Python bindings for QScintilla2"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.riverbankcomputing.com"
|
|
license=('GPL')
|
|
depends=('pyqt>=4.6.0' 'qscintilla>=2.4')
|
|
conflicts=('python-qscintilla2')
|
|
replaces=('python-qscintilla2')
|
|
source=("http://riverbankcomputing.com/static/Downloads/QScintilla2/QScintilla-gpl-$pkgver.tar.gz")
|
|
md5sums=('dd69520ec91f1acb97a4eb74ddde37c9')
|
|
|
|
build() {
|
|
cd $srcdir/QScintilla-gpl-$pkgver/Python
|
|
python configure.py || return 1
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install
|
|
}
|