mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 00:27:38 +08:00
37 lines
899 B
Bash
37 lines
899 B
Bash
#
|
|
# KDE SC 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=attica-testing
|
|
pkgver=0.1.91
|
|
pkgrel=1
|
|
pkgdesc='A library to access Open Collaboration Service providers'
|
|
arch=('i686' 'x86_64')
|
|
url='http://www.kde.org'
|
|
license=('LGPL')
|
|
depends=('qt')
|
|
makedepends=('cmake')
|
|
source=("ftp://ftp.kde.org/pub/kde/unstable/attica/attica-${pkgver}.tar.bz2")
|
|
md5sums=('946c0f22b50f4256599046b028c40ef2')
|
|
|
|
build() {
|
|
cd ${srcdir}
|
|
mkdir build
|
|
cd build
|
|
cmake ../attica-${pkgver} \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_SKIP_RPATH=ON
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/build
|
|
make DESTDIR=${pkgdir} install
|
|
}
|