mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
31 lines
963 B
Bash
31 lines
963 B
Bash
pkgname=choqok
|
|
pkgver=1.6.0
|
|
pkgrel=4
|
|
pkgdesc="A Twitter/identi.ca/laconica client for KDE"
|
|
url="http://choqok.gnufolks.org/"
|
|
license=('GPL')
|
|
arch=('x86_64')
|
|
depends=('qt5-base' 'kconfigwidgets' 'kcoreaddons' 'kdewebkit' 'kdoctools' 'ki18n' 'kemoticons' 'kglobalaccel'
|
|
'kguiaddons' 'kcmutils' 'kio' 'knotifications' 'knotifyconfig' 'kparts' 'sonnet' 'ktextwidgets' 'kwallet'
|
|
'kwidgetsaddons' 'kxmlgui' 'qca-qt5' 'qoauth-qt5' 'telepathy-qt5')
|
|
makedepends=('extra-cmake-modules' 'docbook-xsl')
|
|
categories=('communication')
|
|
screenshot=('http://choqok.gnufolks.org/uploads/choqok.png')
|
|
install=$pkgname.install
|
|
source=("http://download.kde.org/stable/choqok/1.6/src/choqok-1.6.0.tar.xz")
|
|
sha256sums=('8a7527067b3694ad16faafac754cfd5f1e5f5fd1547f066d8f14fbcf8327310f')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
mkdir -p build && cd build
|
|
|
|
cmake -DKDE_INSTALL_USE_QT_SYS_PATHS=ON ..
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver/build
|
|
|
|
make DESTDIR=$pkgdir install
|
|
}
|