|
|
|
# Maintainer: Michael Manley <mmanley@nasutek.com>
|
|
|
|
# Contributor: David C. Rankin <drankinatty at gmail dot com>
|
|
|
|
|
|
|
|
pkgname=tde-libkdcraw
|
|
|
|
pkgver=14.0.10
|
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="The EXIV2 Library interface for TDE kipi-plugins"
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url="https://scm.trinitydesktop.org/scm/git/${pkgname#*-}"
|
|
|
|
license=('GPL')
|
|
|
|
groups=('tde-libs')
|
|
|
|
depends=('tde-tdebase' 'libraw' 'lcms2')
|
|
|
|
makedepends=('pkgconfig' 'autoconf' 'imake')
|
|
|
|
optdepends=()
|
|
|
|
provides=("${pkgname#*-}")
|
|
|
|
conflicts=("trinity-${pkgname#*-}")
|
|
|
|
replaces=("trinity-${pkgname#*-}")
|
|
|
|
options=('staticlibs' 'libtool' '!emptydirs')
|
|
|
|
# install='pkgname.install'
|
|
|
|
source=("https://mirror.ppa.trinitydesktop.org/trinity/releases/R${pkgver}/main/libraries/libkdcraw-trinity-${pkgver}.tar.xz")
|
|
|
|
md5sums=('fedf15518c80f85174071df185a45c88')
|
|
|
|
|
|
|
|
[ -n "$TDEDIR" ] || TDEDIR=/opt/trinity
|
|
|
|
[ -n "$QTDIR" ] || QTDIR=${TDEDIR}/tqt3
|
|
|
|
|
|
|
|
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 autotools, libtoolize, aclocal, autoupdate, autoconf, automake, autoreconf"
|
|
|
|
aclocal
|
|
|
|
autoupdate
|
|
|
|
autoconf
|
|
|
|
automake --add-missing
|
|
|
|
|
|
|
|
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 \
|
|
|
|
--localstatedir=/var \
|
|
|
|
--enable-debug=full \
|
|
|
|
--enable-closure
|
|
|
|
|
|
|
|
## make $NUMJOBS
|
|
|
|
msg "Building - ${pkgname}..."
|
|
|
|
make $NUMJOBS
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
msg "Packaging - $pkgname-$pkgver"
|
|
|
|
|
|
|
|
cd ${srcdir}/${pkgname#*-}-trinity-${pkgver} # use for non-out-of-source
|
|
|
|
|
|
|
|
make -j1 DESTDIR="$pkgdir" install
|
|
|
|
}
|