desktop/kdegraphics-libkexiv2/PKGBUILD

35 lines
1.1 KiB
Bash
Raw Normal View History

# Contributions from Arch: https://www.archlinux.org/packages/extra/x86_64/libkexiv2/
2013-12-18 02:36:04 +08:00
# Include global configuration
source ../kdeapps.conf
2011-07-23 02:02:15 +08:00
pkgname=kdegraphics-libkexiv2
_pkgname=libkexiv2
pkgver=${_kdever}
2014-10-17 05:31:47 +08:00
pkgrel=1
2013-12-18 19:34:40 +08:00
pkgdesc='Wrapper around the Exiv2 library for image metadata manipulation'
2012-11-18 00:10:53 +08:00
arch=('x86_64')
2013-12-18 19:34:40 +08:00
url='https://projects.kde.org/projects/kde/kdegraphics/libs/libkexiv2'
license=('GPL' 'LGPL' 'FDL')
depends=("kdelibs>=${_libsver}" 'lcms' 'libjpeg' 'exiv2>=0.24')
makedepends=('pkg-config' 'cmake' 'automoc4')
groups=('kde' 'kdegraphics' 'kde-uninstall')
2011-07-23 02:02:15 +08:00
provides=('libkexiv2')
conflicts=('libkexiv2')
options=('docs' '!header' 'debug' 'log')
source=("$_mirror/${_pkgname}-$_kdever.tar.xz")
sha256sums=(`grep ${_pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`)
2011-07-23 02:02:15 +08:00
build() {
2013-12-18 19:34:40 +08:00
cd ${srcdir}/${_pkgname}-${pkgver}
cmake . \
-DCMAKE_BUILD_TYPE=${_build_type} \
-DCMAKE_INSTALL_PREFIX=${_installprefix} \
-DCMAKE_SKIP_RPATH=ON \
-DCMAKE_{SHARED,MODULE,EXE}_LINKER_FLAGS='-Wl,--no-undefined -Wl,--as-needed'
2011-07-23 02:02:15 +08:00
}
package() {
2013-12-18 19:34:40 +08:00
cd ${srcdir}/${_pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
2011-07-23 02:02:15 +08:00
}