mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 03:07:13 +08:00
37 lines
900 B
Bash
37 lines
900 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>
|
|
|
|
pkgname=telepathy-qt4
|
|
pkgver=0.8.0
|
|
pkgrel=1
|
|
pkgdesc="A library for Qt-based Telepathy clients."
|
|
arch=('i686' 'x86_64')
|
|
url="http://telepathy.freedesktop.org"
|
|
groups=('telepathy')
|
|
license=('LGPL')
|
|
options=('!libtool')
|
|
depends=('qt' 'telepathy-farsight')
|
|
makedepends=('libxslt' 'python2' 'cmake' 'doxygen')
|
|
source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('b93f03f063d784855d83e1b3c79a1cc5')
|
|
|
|
build() {
|
|
cd "${srcdir}"
|
|
|
|
mkdir build
|
|
cd build
|
|
cmake ../${pkgname}-${pkgver} \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}"/build
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|