mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
35 lines
936 B
Bash
35 lines
936 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname='ktp-contact-runner'
|
|
pkgver=0.5.0
|
|
pkgrel=1
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.kde.org"
|
|
license=('GPL')
|
|
pkgdesc='Finds entries from your KDE-Telepathy Contacts'
|
|
depends=('kde-workspace' 'ktp-common-internals')
|
|
makedepends=('cmake' 'automoc4')
|
|
groups=('kde-telepathy')
|
|
source=("ftp://mirrors.mit.edu/kde/unstable/kde-telepathy/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('1139f96487f8cb6794c84da76da61dea')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
cd ..
|
|
rm -rf build
|
|
mkdir -p build && cd build
|
|
|
|
cmake ../${pkgbase}-${pkgver} \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_SKIP_RPATH=ON \
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/build
|
|
make DESTDIR=$pkgdir install
|
|
} |