desktop/konversation/PKGBUILD

34 lines
790 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
pkgver=1.7.5
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')
categories=('communication')
2013-03-19 00:28:38 +08:00
screenshots=('http://konversation.kde.org/screenshots/konversation13_2.png')
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
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 ../${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
}