You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.1 KiB
43 lines
1.1 KiB
# Maintainer: Pawel 'l0ner' Soltys <pwslts@gmail.com>
|
|
# Contributor: Calvin Morrison <mutantturkey@gmail.com>
|
|
|
|
pkgname=trinity-pyqt3
|
|
pkgver=3.18.1
|
|
pkgrel=1
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.riverbankcomputing.com/software/pyqt/intro"
|
|
license=('GPL')
|
|
groups=('trinity-base')
|
|
pkgdesc="Trinity set of Python bindings for the Qt3 toolkit"
|
|
depends=('python2-sip' 'qscintilla-qt3' 'trinity-qt3')
|
|
#makedepends=()
|
|
#optdepends=()
|
|
provides=('trinity-pyqt3' 'pyqt3')
|
|
conflicts=('pyqt3')
|
|
replaces=('trinity-pyqt3')
|
|
#options=()
|
|
source=("http://www.riverbankcomputing.com/static/Downloads/PyQt3/PyQt-x11-gpl-${pkgver}.tar.gz")
|
|
md5sums=('f1d120495d1aaf393819e988c0a7bb7e')
|
|
|
|
build() {
|
|
cd ${srcdir}/PyQt-x11-gpl-${pkgver}
|
|
|
|
[ "$QTDIR" = "" ] && . /etc/profile.d/qt3.sh
|
|
[ "$TDEDIR" = "" ] && . /etc/profile.d/trinity.sh
|
|
|
|
msg "Starting configure..."
|
|
|
|
export QMAKESPEC="/opt/qt/mkspecs/default"
|
|
|
|
echo yes | python2.7 configure.py -q ${QTDIR}
|
|
|
|
msg "Building ${pkgname}..."
|
|
make
|
|
}
|
|
|
|
package() {
|
|
msg "Packaging - $pkgname-$pkgver"
|
|
cd ${srcdir}/PyQt-x11-gpl-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
}
|