mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
33 lines
886 B
Bash
33 lines
886 B
Bash
pkgname=kmymoney
|
|
pkgver=4.8.1.1
|
|
pkgrel=1
|
|
pkgdesc="A finance manager for KDE4 with HBCI support"
|
|
arch=('x86_64')
|
|
url="http://kmymoney2.sourceforge.net"
|
|
license=('GPL')
|
|
depends=('kde-runtime' 'shared-mime-info' 'aqbanking' 'libofx' 'libalkimia' 'boost-libs' 'libical')
|
|
makedepends=('cmake' 'automoc4' 'docbook-xml' 'docbook-xsl' 'boost' 'doxygen')
|
|
categories=('office')
|
|
install=$pkgname.install
|
|
source=(https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.7z)
|
|
sha256sums=('7ee2f468ee0bd952cc4d55c2ec2691651afba1c46634cadc2a1161ef405c73a3')
|
|
|
|
prepare() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}/build"
|
|
cmake ../ \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=RELEASE -DCMAKE_SKIP_RPATH=YES
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}/build"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|