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.
67 lines
2.1 KiB
67 lines
2.1 KiB
# Maintainer: Michael Manley <mmanley@nasutek.com>
|
|
# Contributor: Pawel 'l0ner' Soltys <pwslts@gmail.com>
|
|
# Contributor: Calvin Morrison <mutantturkey@gmail.com>
|
|
# Contributor: David C. Rankin <drankinatty at gmail dot com>
|
|
|
|
_mod=tdebindings
|
|
_cat=core/
|
|
_kdemod="${_mod/tde/kde}"
|
|
|
|
pkgname="tde-${_mod}"
|
|
pkgver=14.1.0
|
|
pkgrel=1
|
|
arch=('i686' 'x86_64' 'aarch64' 'armv7h' 'powerpc64le')
|
|
url="https//scm.trinitydesktop.org/scm/git/${_mod}"
|
|
license=('GPL')
|
|
groups=('tde-base')
|
|
pkgdesc="Trinity Desktop bindings"
|
|
depends=('tde-tdelibs')
|
|
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=('b0f44e0ad32abd9a2c42da8eea4be275')
|
|
|
|
[ -n "$TDEDIR" ] || TDEDIR=/opt/trinity
|
|
[ -n "$TQTDIR" ] || TQTDIR=${TDEDIR}/tqt3
|
|
|
|
build() {
|
|
## Generate config files and update with autoreconf
|
|
cd ${srcdir}/${pkgname#*-}-trinity-${pkgver}
|
|
|
|
msg "Copying system libtool files...."
|
|
cp -a /usr/share/libtool/build-aux/config.guess ./admin/
|
|
cp -a /usr/share/libtool/build-aux/config.sub ./admin/
|
|
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
|
|
|
|
export PKG_CONFIG_PATH=${TDEDIR}/lib/pkgconfig:${TQTDIR}/lib/pkgconfig:${PKG_CONFIG_PATH}
|
|
|
|
## configure
|
|
msg "Configuring - ${pkgname}..."
|
|
PYTHON=/usr/bin/python3 \
|
|
./configure \
|
|
--prefix=${TDEDIR} \
|
|
--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'
|
|
|
|
msg "Building - ${pkgname}..."
|
|
make $NUMJOBS
|
|
}
|
|
|
|
package() {
|
|
msg "Packaging - $pkgname-$pkgver"
|
|
cd ${srcdir}/${pkgname#*-}-trinity-${pkgver}
|
|
make -j1 DESTDIR="${pkgdir}" install
|
|
}
|