mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
44 lines
1.1 KiB
Bash
44 lines
1.1 KiB
Bash
pkgname=quassel
|
|
pkgver=0.12.2
|
|
pkgrel=1
|
|
pkgdesc="Next-generation distributed IRC client"
|
|
url="http://quassel-irc.org"
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
depends=('qt5-base' 'knotifyconfig' 'qt5-webkit' 'qt5-script')
|
|
makedepends=('cmake' 'extra-cmake-modules' 'qt5-tools' 'qca-qt5' 'python3')
|
|
categories=('communication')
|
|
screenshot=('http://quassel-irc.org/files/images/snapshot13.preview.png')
|
|
source=("http://quassel-irc.org/pub/quassel-${pkgver}.tar.bz2"
|
|
'quassel.service'
|
|
'quassel.conf')
|
|
install=quassel.install
|
|
backup=(etc/conf.d/quassel.conf)
|
|
md5sums=('f5473a9c5927a0e8cb3a204ced887aa8'
|
|
'95045bafa9bf965d0e2febd5b49514ea'
|
|
'479229556ba0dd94e3ce28e31e5deea9')
|
|
|
|
build() {
|
|
[[ ! -d build ]] && mkdir build
|
|
cd build
|
|
|
|
cmake \
|
|
-DCMAKE_INSTALL_PREFIX=/usr/ \
|
|
-DUSE_QT5=ON \
|
|
-DWITH_KDE=ON \
|
|
-DCMAKE_BUILD_TYPE="Release" \
|
|
../${pkgname}-${pkgver}/ \
|
|
-Wno-dev
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
|
|
make DESTDIR=${pkgdir} install
|
|
|
|
install -D ${srcdir}/$pkgname.service ${pkgdir}/usr/lib/systemd/system/$pkgname.service
|
|
install -D -m644 ${srcdir}/$pkgname.conf ${pkgdir}/etc/conf.d/$pkgname
|
|
}
|