mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
35 lines
820 B
Bash
35 lines
820 B
Bash
# Include global configuration
|
|
source ../kdeapps.conf
|
|
|
|
pkgname=konversation
|
|
pkgver=1.6.2
|
|
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' 'python3')
|
|
makedepends=('extra-cmake-modules' 'kdoctools')
|
|
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=('7a0143fa195d8fd3f646997e8eeff468f1ec5fdb')
|
|
|
|
prepare(){
|
|
mkdir -p build
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR=${pkgdir} install
|
|
}
|
|
|