2016-04-16 21:00:05 +08:00
|
|
|
# Include global configuration
|
|
|
|
source ../kdeapps.conf
|
2010-06-01 01:56:52 +08:00
|
|
|
|
|
|
|
pkgname=konversation
|
2018-06-27 10:08:36 +08:00
|
|
|
pkgver=1.7.5
|
2018-12-03 19:19:50 +08:00
|
|
|
pkgrel=2
|
2010-06-01 01:56:52 +08:00
|
|
|
pkgdesc="A user friendly IRC client for KDE"
|
2013-03-19 00:28:38 +08:00
|
|
|
arch=('x86_64')
|
2010-06-01 01:56:52 +08:00
|
|
|
url="http://konversation.kde.org"
|
2016-04-16 21:00:05 +08:00
|
|
|
depends=('knotifyconfig' 'kemoticons' 'kparts' 'kidletime' 'qca-qt5' 'python3')
|
|
|
|
makedepends=('extra-cmake-modules' 'kdoctools')
|
2010-06-01 01:56:52 +08:00
|
|
|
license=('GPL2' 'FDL')
|
2012-03-16 22:51:37 +08:00
|
|
|
categories=('communication')
|
2013-03-19 00:28:38 +08:00
|
|
|
screenshots=('http://konversation.kde.org/screenshots/konversation13_2.png')
|
2018-06-27 10:08:36 +08:00
|
|
|
source=("https://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz")
|
|
|
|
sha1sums=('c4f702f7eb4e1c869488fe005ddbcb1cbf31951c')
|
2010-06-01 01:56:52 +08:00
|
|
|
|
2016-04-16 21:00:05 +08:00
|
|
|
prepare(){
|
|
|
|
mkdir -p build
|
2016-05-08 23:20:04 +08:00
|
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
2016-04-16 21:00:05 +08:00
|
|
|
}
|
|
|
|
|
2010-06-01 01:56:52 +08:00
|
|
|
build() {
|
2016-04-16 21:00:05 +08:00
|
|
|
cd build
|
2018-12-03 19:19:50 +08:00
|
|
|
cmake ../${pkgname}-${pkgver}
|
2011-12-06 04:59:57 +08:00
|
|
|
make
|
2010-06-01 01:56:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2016-04-16 21:00:05 +08:00
|
|
|
cd build
|
|
|
|
make DESTDIR=${pkgdir} install
|
2010-06-01 01:56:52 +08:00
|
|
|
}
|
2016-05-08 23:20:04 +08:00
|
|
|
|