mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 10:44:37 +08:00
30 lines
895 B
Bash
30 lines
895 B
Bash
|
# Platform Packages for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
||
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
||
|
|
||
|
# include global config
|
||
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
||
|
|
||
|
pkgname=alkimia
|
||
|
pkgver=4.3.1
|
||
|
pkgrel=1
|
||
|
pkgdesc="A library with common classes and functionality used by finance applications for the KDE SC."
|
||
|
depends=()
|
||
|
makedepends=('cmake' 'automoc4')
|
||
|
conflicts=()
|
||
|
url=('http://kde-apps.org/content/show.php/libalkimia?content=137323')
|
||
|
license=('LGPL')
|
||
|
arch=('i686' 'x86_64')
|
||
|
|
||
|
source=("http://kde-apps.org/CONTENT/content-files/137323-libalkimia-$pkgver.tar.bz2")
|
||
|
md5sums=('73d7f1365118019030b2045d95c92456')
|
||
|
|
||
|
build()
|
||
|
|
||
|
{
|
||
|
cd $srcdir/libalkimia-$pkgver
|
||
|
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=DebugFull
|
||
|
make
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|