mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
34 lines
790 B
Bash
34 lines
790 B
Bash
# Include global configuration
|
|
source ../kdeapps.conf
|
|
|
|
pkgname=konversation
|
|
pkgver=1.7.5
|
|
pkgrel=2
|
|
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')
|
|
source=("https://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz")
|
|
sha1sums=('c4f702f7eb4e1c869488fe005ddbcb1cbf31951c')
|
|
|
|
prepare(){
|
|
mkdir -p build
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake ../${pkgname}-${pkgver}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR=${pkgdir} install
|
|
}
|
|
|