mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
36 lines
934 B
Bash
36 lines
934 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=konversation
|
|
pkgver=1.4
|
|
pkgrel=1
|
|
pkgdesc="A user friendly IRC client for KDE"
|
|
arch=('i686' 'x86_64')
|
|
url="http://konversation.kde.org"
|
|
depends=('kde-runtime' 'kdepimlibs' 'python')
|
|
makedepends=('automoc4' 'cmake' 'pkgconfig' 'docbook-xsl')
|
|
license=('GPL2' 'FDL')
|
|
categories=('communication')
|
|
install=${pkgname}.install
|
|
source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz)
|
|
md5sums=('f67271f08b9da75dc9daff9ecbf3b365')
|
|
|
|
build() {
|
|
cd "${srcdir}"
|
|
mkdir build
|
|
cd build
|
|
cmake ../${pkgname}-${pkgver} \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_SKIP_RPATH=ON \
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}"/build
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|