desktop/konversation/PKGBUILD

35 lines
820 B
Bash
Raw Normal View History

2016-04-16 21:00:05 +08:00
# Include global configuration
source ../kdeapps.conf
2010-06-01 01:56:52 +08:00
pkgname=konversation
2016-08-04 20:29:45 +08:00
pkgver=1.6.2
2016-07-23 20:13:18 +08:00
pkgrel=1
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')
categories=('communication')
2013-03-19 00:28:38 +08:00
screenshots=('http://konversation.kde.org/screenshots/konversation13_2.png')
2010-06-01 01:56:52 +08:00
install=${pkgname}.install
2016-07-23 20:13:18 +08:00
source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz")
2016-08-04 20:29:45 +08:00
sha1sums=('7a0143fa195d8fd3f646997e8eeff468f1ec5fdb')
2010-06-01 01:56:52 +08:00
2016-04-16 21:00:05 +08:00
prepare(){
mkdir -p build
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
cmake_kf5 ../${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
}