mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-10 01:27:17 +08:00
36 lines
957 B
Bash
36 lines
957 B
Bash
# maintainer abveritas[at]chakra-project[dot]org>
|
|
|
|
pkgname=choqok
|
|
pkgver=1.3
|
|
pkgrel=4
|
|
pkgdesc="A Twitter/identi.ca/laconica client for KDE"
|
|
url="http://choqok.gnufolks.org/"
|
|
license=('GPL')
|
|
arch=('x86_64')
|
|
depends=('kdebase-runtime' 'qjson' 'qoauth' 'qca-ossl')
|
|
makedepends=('cmake' 'automoc4' 'docbook-xsl')
|
|
optdepends=('kde-baseapps-konqueror: proxy support')
|
|
categories=('communication')
|
|
screenshot=('http://choqok.gnufolks.org/uploads/choqok.png')
|
|
install="${pkgname}.install"
|
|
source=("http://sourceforge.net/projects/choqok/files/Choqok/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('87eea4f2c23467fb021e3e6b794eb37d')
|
|
|
|
build() {
|
|
cd ${srcdir}
|
|
mkdir build
|
|
cd build
|
|
cmake ../${pkgname}-${pkgver} \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/build
|
|
make DESTDIR=${pkgdir} install
|
|
|
|
# Conflicts with KDEPimLibs on KDE 4.10
|
|
rm -v ${pkgdir}/usr/share/apps/cmake/modules/FindQtOAuth.cmake
|
|
}
|