mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 14:37:15 +08:00
31 lines
664 B
Bash
31 lines
664 B
Bash
# $Id: $
|
|
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
|
|
|
|
pkgname=attica
|
|
pkgver=0.1.3
|
|
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=("http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('aeb0c14d1bf2afa7d9ce3b5a16390a03')
|
|
|
|
build() {
|
|
cd ${srcdir}
|
|
mkdir build
|
|
cd build
|
|
cmake ../${pkgname}-${pkgver} \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_SKIP_RPATH=ON
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/build
|
|
make DESTDIR=${pkgdir} install
|
|
}
|