mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
38 lines
1.0 KiB
Bash
38 lines
1.0 KiB
Bash
#
|
|
# Chakra 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=telepathy-kde-auth-handler
|
|
pkgver=0.2.0
|
|
pkgrel=1
|
|
pkgdesc="Telepathy contact list application "
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.kde.org"
|
|
license=('GPL')
|
|
depends=('kde-runtime' 'telepathy-qt4')
|
|
makedepends=('cmake' 'automoc4')
|
|
conflicts=('telepathy-contact-list-git')
|
|
replaces=('telepathy-contact-list-git')
|
|
groups=('telepathy-kde')
|
|
source=("ftp://mirrors.mit.edu/kde/unstable/telepathy-kde/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
|
|
sha1sums=('f482134e041541a5d45ff14b9dc6a1fb2db9520c')
|
|
|
|
build() {
|
|
cd "${srcdir}"
|
|
mkdir build
|
|
cd build
|
|
cmake ../${pkgname}-${pkgver} \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}"/build
|
|
make DESTDIR="${pkgdir}" install
|
|
} |