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.
58 lines
1.8 KiB
58 lines
1.8 KiB
# Maintainer: Michael Manley <mmanley@nasutek.com>
|
|
# Contributor: David C. Rankin <drankinatty at gmail dot com>
|
|
|
|
pkgname=tde-gtk3-tqt-engine
|
|
pkgver=14.0.10
|
|
pkgrel=1
|
|
pkgdesc="gtk3 tqt engine"
|
|
arch=('i686' 'x86_64')
|
|
url='https://scm.trinitydesktop.org/scm/git/applications/gtk3-tqt-engine'
|
|
license=('GPL')
|
|
groups=('tde-extra')
|
|
depends=('tde-tdebase' 'gtk3')
|
|
makedepends=('pkgconfig' 'cmake')
|
|
#provides=('tdemultimedia')
|
|
#conflicts=('gtk3-tqt-engine')
|
|
#replaces=('gtk3-tqt-engine')
|
|
options=('staticlibs' 'libtool' '!strip')
|
|
source=("https://mirror.ppa.trinitydesktop.org/trinity/releases/R${pkgver}/main/applications/gtk3-tqt-engine-trinity-${pkgver}.tar.xz")
|
|
md5sums=('1f94fd009a3c062e042f914c21d49984')
|
|
# install=''
|
|
|
|
[ -n "$TDEDIR" ] || TDEDIR=/opt/trinity
|
|
[ -n "$QTDIR" ] || QTDIR=${TDEDIR}/tqt3
|
|
[ -n "$TQTDIR" ] || TQTDIR=${QTDIR}
|
|
|
|
build() {
|
|
## Generate config files and update with autoreconf
|
|
cd ${srcdir}/${pkgname#*-}-trinity-${pkgver}
|
|
|
|
msg "Copying system libtool files...."
|
|
cp /usr/share/aclocal/libtool.m4 ./admin/libtool.m4.in
|
|
cp /usr/share/libtool/build-aux/ltmain.sh ./admin/ltmain.sh
|
|
|
|
msg "Running make -f admin/Makefile.common ...."
|
|
make -f admin/Makefile.common
|
|
|
|
## configure
|
|
msg "Configuring - ${pkgname}..."
|
|
|
|
./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-extra-libs="${TDEDIR}/lib:${TDEDIR}/lib/trinity" \
|
|
|
|
### PATCH: This allows the package to compile due to some odd reason its not finding tqt-mt, Remove LD_LIBRARY_PATH
|
|
### if fixed on future versions
|
|
LD_LIBRARY_PATH=$TQTDIR/lib make $NUMJOBS
|
|
}
|
|
|
|
package() {
|
|
msg "Packaging - $pkgname-$pkgver"
|
|
cd ${srcdir}/${pkgname#*-}-trinity-${pkgver}
|
|
make -j1 DESTDIR="${pkgdir}" install
|
|
}
|