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.
63 lines
1.7 KiB
63 lines
1.7 KiB
# Maintainer: Michael Manley <mmanley@nasutek.com>
|
|
# Contributor: David C. Rankin <drankinatty at gmail dot com>
|
|
|
|
pkgname=tde-libkexiv2
|
|
pkgver=14.0.5
|
|
pkgrel=1
|
|
pkgdesc="The EXIV2 Library interface for TDE kipi-plugins"
|
|
arch=('i686' 'x86_64')
|
|
url="http://scm.trinitydesktop.org/scm/git/${pkgname#*-}"
|
|
license=('GPL')
|
|
groups=('tde-libs')
|
|
depends=('tde-tdebase' 'exiv2')
|
|
makedepends=('pkgconfig' 'autoconf' 'imake')
|
|
optdepends=()
|
|
provides=("${pkgname#*-}")
|
|
conflicts=("trinity-${pkgname#*-}")
|
|
replaces=("trinity-${pkgname#*-}")
|
|
options=('staticlibs' 'libtool' '!emptydirs')
|
|
# install='pkgname.install'
|
|
source=("http://mirror.ppa.trinitydesktop.org/trinity/releases/R${pkgver}/libraries/libkexiv2-R${pkgver}.tar.bz2"
|
|
"exiv2-fixes.patch")
|
|
md5sums=('c6fbcf0c85099e9f689e6af69507b860'
|
|
'71bf0967f94cf8975c5be0efe313265e')
|
|
|
|
build() {
|
|
## Generate config files and update with autoreconf
|
|
cd ${srcdir}/libraries/${pkgname#*-}
|
|
|
|
msg "Patching to fix compiler errors with exiv2..."
|
|
patch -p1 -i ${srcdir}/exiv2-fixes.patch
|
|
|
|
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 \
|
|
--localstatedir=/var \
|
|
--enable-debug=full \
|
|
--enable-closure
|
|
|
|
msg "Building - ${pkgname}..."
|
|
make $NUMJOBS
|
|
|
|
}
|
|
|
|
package() {
|
|
msg "Packaging - $pkgname-$pkgver"
|
|
|
|
cd ${srcdir}/libraries/${pkgname#*-} # use for non-out-of-source
|
|
|
|
make -j1 DESTDIR="$pkgdir" install
|
|
}
|