diff options
Diffstat (limited to 'arch/tde-base/tde-tdebindings/PKGBUILD')
-rw-r--r-- | arch/tde-base/tde-tdebindings/PKGBUILD | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/arch/tde-base/tde-tdebindings/PKGBUILD b/arch/tde-base/tde-tdebindings/PKGBUILD index a0307b06c..d0475d04c 100644 --- a/arch/tde-base/tde-tdebindings/PKGBUILD +++ b/arch/tde-base/tde-tdebindings/PKGBUILD @@ -8,7 +8,7 @@ _cat=core/ _kdemod="${_mod/tde/kde}" pkgname="tde-${_mod}" -pkgver=14.0.13 +pkgver=14.1.0 pkgrel=1 arch=('i686' 'x86_64' 'aarch64' 'armv7h' 'powerpc64le') url="https//scm.trinitydesktop.org/scm/git/${_mod}" @@ -16,13 +16,13 @@ license=('GPL') groups=('tde-base') pkgdesc="Trinity Desktop bindings" depends=('tde-tdelibs') -makedepends=('pkgconfig' 'autoconf' 'ruby' 'jdk-openjdk') +makedepends=('pkgconfig' 'autoconf' 'python3' 'ruby' 'jdk-openjdk') options=('staticlibs' 'libtool' '!strip') source=("https://mirror.ppa.trinitydesktop.org/trinity/releases/R${pkgver}/main/${_cat}${_mod}-trinity-${pkgver}.tar.xz") -md5sums=('5ff91819a140210b4a946ef7384b7abb') +md5sums=('b0f44e0ad32abd9a2c42da8eea4be275') [ -n "$TDEDIR" ] || TDEDIR=/opt/trinity -[ -n "$QTDIR" ] || QTDIR=${TDEDIR}/tqt3 +[ -n "$TQTDIR" ] || TQTDIR=${TDEDIR}/tqt3 build() { ## Generate config files and update with autoreconf @@ -37,21 +37,23 @@ build() { msg "Running make -f admin/Makefile.common ...." make -f admin/Makefile.common + export PKG_CONFIG_PATH=${TDEDIR}/lib/pkgconfig:${TQTDIR}/lib/pkgconfig:${PKG_CONFIG_PATH} + ## configure msg "Configuring - ${pkgname}..." - PYTHON=/usr/bin/python2 \ + PYTHON=/usr/bin/python3 \ ./configure \ --prefix=${TDEDIR} \ - --with-qt-dir=${QTDIR} \ - --with-qt-includes=${QTDIR}/include \ - --with-qt-libraries=${QTDIR}/lib \ - --with-extra-includes="/usr/include/tqt:/usr/include/tqt/Qt" \ + --with-tqt-dir=${TQTDIR} \ + --with-tqt-includes=${TQTDIR}/include \ + --with-tqt-libraries=${TQTDIR}/lib \ + --with-extra-includes="/usr/include/tqt" \ --with-extra-libs="${TDEDIR}/lib:${TDEDIR}/lib/trinity" \ --with-java=/usr/lib/jvm/default \ --sysconfdir=${TDEDIR}/etc \ --localstatedir=/var \ --enable-closure \ - DO_NOT_COMPILE='dcopc dcopperl kalyptus qtsharp xparts python' + DO_NOT_COMPILE='dcopc dcopperl kalyptus qtsharp xparts' msg "Building - ${pkgname}..." make $NUMJOBS |