mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
39 lines
1.2 KiB
Bash
39 lines
1.2 KiB
Bash
pkgname=kmymoney
|
|
pkgver=5.0.2
|
|
pkgrel=2
|
|
pkgdesc="Personal finance manager for KDE which operates similarly to MS-Money or Quicken"
|
|
arch=('x86_64')
|
|
url="https://kmymoney.org/"
|
|
license=('GPL')
|
|
depends=('aqbanking' 'boost-libs' 'libalkimia' 'sqlcipher' 'qt5-base' 'qgpgme' 'karchive'
|
|
'kcoreaddons' 'kconfig' 'kwidgetsaddons' 'ki18n' 'kcompletion' 'kcmutils'
|
|
'kitemmodels' 'kitemviews' 'kservice' 'kwallet' 'kiconthemes' 'kxmlgui'
|
|
'ktextwidgets' 'knotifications' 'kio' 'kdoctools' 'kholidays' 'kcontacts'
|
|
'akonadiconsole' 'kross' 'kqtquickcharts' 'kdiagram' 'kdewebkit' 'shared-mime-info')
|
|
makedepends=('boost' 'extra-cmake-modules' 'doxygen')
|
|
categories=('office')
|
|
source=(https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz)
|
|
sha256sums=('57f321ebdb1e8bc04e41531a7d0ce947c65101d7768c2aa45c65370b5d67a593')
|
|
|
|
prepare() {
|
|
cd $pkgname-$pkgver
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver/build
|
|
cmake ../ \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib \
|
|
-DCMAKE_BUILD_TYPE=RELEASE \
|
|
-DCMAKE_SKIP_RPATH=YES \
|
|
-Wno-dev
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver/build
|
|
|
|
make DESTDIR=$pkgdir install
|
|
}
|