mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
34 lines
854 B
Bash
34 lines
854 B
Bash
# Maintainer: abveritas[at]chakra-project[dot]org>
|
|
|
|
pkgname=konversation
|
|
pkgver=1.5
|
|
pkgrel=1
|
|
pkgdesc="A user friendly IRC client for KDE"
|
|
arch=('x86_64')
|
|
url="http://konversation.kde.org"
|
|
depends=('kde-runtime' 'kdepimlibs' 'python2')
|
|
makedepends=('automoc4' 'cmake' 'pkg-config' 'docbook-xsl')
|
|
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")
|
|
md5sums=('c65c97012854f334d87b3a8df32b38f1')
|
|
|
|
build() {
|
|
cd "${srcdir}"
|
|
mkdir build
|
|
cd build
|
|
cmake ../${pkgname}-${pkgver} \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_SKIP_RPATH=ON \
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}"/build
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|