desktop/skrooge/PKGBUILD
Chaoting Liu 7ede3ea2b8 grantlee-qt5 -> grantlee
- remove grantlee from kdelibs depedency
- update skrooge to 2.10.5
- rest are rebuild
2017-11-15 14:06:39 +00:00

37 lines
1.2 KiB
Bash

pkgname=skrooge
pkgver=2.10.5
pkgrel=1
pkgdesc="Allows you to manage your personal finances in KDE"
arch=('x86_64')
url="http://skrooge.org"
license=('GPL')
depends=('qt5-base' 'qca-qt5' 'qt5-script' 'libofx>=0.9.10' 'grantlee'
'kross' 'krunner' 'knotifyconfig' 'sqlcipher'
'karchive' 'kconfig' 'kcoreaddons' 'ki18n' 'kitemviews' 'kwidgetsaddons'
'kwindowsystem' 'kcompletion' 'kdoctools' 'kjobwidgets' 'kconfigwidgets'
'kdesignerplugin' 'kiconthemes' 'kio' 'knewstuff' 'kparts' 'kwallet' 'kxmlgui')
makedepends=('cmake' 'extra-cmake-modules' 'qt5-tools' 'kdoctools' 'python3')
options=('!emptydirs')
categories=('office')
install=$pkgname.install
source=("https://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
sha256sums=('56a0124dec34e6e96a5e71ff0e825a7ec79f32a69ef0ccdc5f0f9b753d8c3eb0'
'SKIP')
validpgpkeys=('103DC6D087B3A4A2ED975D7EF0C8CED3382A5C4D') #Stephane MANKOWSKI (Perso) <stephane@mankowski.fr>
build() {
cd $pkgname-$pkgver
cmake . -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DKDE_INSTALL_LIBDIR=/usr/lib \
-DSKG_DESIGNER=OFF
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR=$pkgdir install
}