mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
91 lines
2.8 KiB
Bash
91 lines
2.8 KiB
Bash
pkgbase=digikam
|
|
pkgname=('digikam' 'kipi-plugins')
|
|
_pkgver=5.4.0
|
|
pkgver=${_pkgver//-/_}
|
|
pkgrel=1
|
|
epoch=1
|
|
url="https://www.digikam.org/"
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
options=("debug")
|
|
makedepends=('extra-cmake-modules' 'libkipi' 'libksane' 'liblqr' 'boost'
|
|
'libgpod' 'hugin' 'opencv' 'qt5-webkit' 'doxygen' 'lensfun' 'imagemagick' 'eigen3' 'libpgf'
|
|
'libusb' 'kio' 'kdoctools' 'marble' 'kfilemetadata' 'akonadi-contact' 'qtav'
|
|
'threadweaver' 'kcalcore' 'knotifyconfig' 'libkvkontakte' 'libmediawiki' 'mariadb' 'prison')
|
|
source=("http://download.kde.org/stable/${pkgname}/${pkgname}-${_pkgver}.tar.xz"
|
|
digikam-find-qtav.patch)
|
|
sha1sums=('6c58ee30cd84b40acf4427f1bb9dbb8b891eb894'
|
|
'b170e5eab5a8c40d1c8c8f2d2cfe5e911ad66939')
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
|
|
# Fix QtAV location
|
|
cd $pkgname-$pkgver
|
|
patch -p1 -i ../digikam-find-qtav.patch
|
|
}
|
|
|
|
build() {
|
|
|
|
cd build
|
|
|
|
cmake ../${pkgname}-${_pkgver} \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DCMAKE_SKIP_RPATH=ON \
|
|
-DBUILD_TESTING=OFF \
|
|
-DENABLE_KFILEMETADATASUPPORT=ON \
|
|
-DENABLE_MEDIAPLAYER=ON \
|
|
-DENABLE_AKONADICONTACTSUPPORT=ON \
|
|
-DENABLE_OPENCV3=ON \
|
|
-DENABLE_MYSQLSUPPORT=ON \
|
|
-DENABLE_INTERNALMYSQL=ON \
|
|
-DENABLE_APPSTYLES=ON
|
|
|
|
make
|
|
}
|
|
|
|
package_digikam() {
|
|
pkgdesc="Digital photo management application for KDE"
|
|
depends=('liblqr' 'libkipi' 'lensfun' 'libpgf' 'opencv' 'akonadi-contact'
|
|
'knotifyconfig' 'libksane' 'kfilemetadata' 'qtav' 'marble' 'mariadb' 'kcalcore')
|
|
optdepends=('kipi-plugins: more tools and plugins'
|
|
'qt5-imageformats: support for additional image formats (WEBP, TIFF)'
|
|
'hugin: panorama tool')
|
|
install=digikam.install
|
|
|
|
cd build/core
|
|
make DESTDIR="$pkgdir" install
|
|
cd $srcdir/build/doc/digikam
|
|
make DESTDIR="$pkgdir" install
|
|
cd $srcdir/build/po
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
# Provided by kipi-plugins
|
|
rm "$pkgdir"/usr/share/locale/*/LC_MESSAGES/{kipiplugin*,libkvkontakte}.mo
|
|
}
|
|
|
|
package_kipi-plugins() {
|
|
pkgdesc="A collection of plugins extending the KDE graphics and image applications as digiKam"
|
|
depends=('kio' 'libkipi')
|
|
optdepends=('kcalcore: Calendar plugin'
|
|
'libmediawiki: MediaWiki Export plugin'
|
|
'libkvkontakte: VKontakte.ru Exporter plugin'
|
|
'libgpod: iPodExport plugin'
|
|
'opencv: Remove Red Eyes plugin'
|
|
'imagemagick: Video SlideShow plugin'
|
|
'qt5-gstreamer: Video SlideShow plugin'
|
|
'threadweaver: panorama plugin'
|
|
'hugin: panorama plugin')
|
|
install=kipi-plugins.install
|
|
|
|
cd build/extra
|
|
make DESTDIR="$pkgdir" install
|
|
cd $srcdir/build/po
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
# Provided by digikam
|
|
rm "${pkgdir}"/usr/share/locale/*/LC_MESSAGES/digikam.mo
|
|
}
|