mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 16:47:19 +08:00
37 lines
891 B
Bash
37 lines
891 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
|
||
|
pkgver=0.1.4
|
||
|
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=('04887f3d10f6394cafc0d77c0ae60ec2')
|
||
|
|
||
|
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
|
||
|
}
|