mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
35 lines
1014 B
Bash
35 lines
1014 B
Bash
# Maintainer: Jeff Huang <s8321414[at]gmail[dot]com>
|
|
# Contributer: abveritas[at]chakraos[dot]org>
|
|
|
|
pkgname=konversation
|
|
pkgver=1.6
|
|
pkgrel=1
|
|
pkgdesc="A user friendly IRC client for KDE"
|
|
arch=('x86_64')
|
|
url="http://konversation.kde.org"
|
|
depends=('knotifyconfig' 'kemoticons' 'kparts' 'kidletime' 'qca-qt5' 'python2')
|
|
makedepends=('extra-cmake-modules' 'kdoctools' 'python')
|
|
license=('GPL2' 'FDL')
|
|
categories=('communication')
|
|
screenshots=('http://konversation.kde.org/screenshots/konversation13_2.png')
|
|
install=${pkgname}.install
|
|
source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz")
|
|
sha1sums=('16e8c1969b04c0946b48a436e8825654b0029bb9')
|
|
|
|
build() {
|
|
cd "${srcdir}"
|
|
[[ -e build ]] || rm -rf build
|
|
mkdir build && cd build
|
|
cmake ../${pkgname}-${pkgver} \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_SKIP_RPATH=ON \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}"/build
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|