summaryrefslogtreecommitdiff
path: root/nonprism/choqok-nonprism/PKGBUILD
blob: abbb4073a47428620444bd0dee83f46c29518f37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# $Id$
# Maintainer: Peter Richard Lewis <plewis@aur.archlinux.org>
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Emanuele Rossi <newdna1510@yahoo.it>
# Contributor: Bram Schoenmakers <me@bramschoenmakers.nl>
# Maintainer (Parabola): Márcio Silva <coadde@lavabit.com>

_pkgname=choqok
pkgname=choqok-nonprism
pkgver=1.3
pkgrel=4.2
pkgdesc="A status.net client for KDE, without Twitter support"
url='http://choqok.gnufolks.org/'
license=('GPL')
arch=('i686' 'x86_64' 'mips64el')
depends=('kdebase-runtime' 'qjson' 'qoauth' 'qca-ossl')
makedepends=('cmake' 'automoc4')
optdepends=('kdebase-konqueror-libre: proxy support')
provides=("$_pkgname=$pkgver")
conflicts=$_pkgname
replaces=$_pkgname
install="${_pkgname}.install"
source=("http://downloads.sourceforge.net/${_pkgname}/${_pkgname}-${pkgver}.tar.bz2")
md5sums=('87eea4f2c23467fb021e3e6b794eb37d')

prepare() {
  cd "${srcdir}/${_pkgname}-${pkgver}"

  # remove twitter service and keep only twitterapi (choqok software) for status.net and open collaboration services
  sed -i '\|add_subdirectory(twitter)|d' microblogs/CMakeLists.txt
  sed -i 's|twitter[.]com|status.net|' microblogs/laconica/laconicamicroblog.cpp
  sed -i 's|twitter[.]com|status.net|' microblogs/laconica/laconicasearch.cpp

  # remove uploaders plugin (with only nonprivacy services)
  sed -i '\|add_subdirectory(uploaders)|d' plugins/CMakeLists.txt
  sed -i 's|Comment||' plugins/searchaction/choqok_searchaction.desktop

  # remove twitter on docbook
  sed -i 's| and Twitter.com||
          s| and another with the alias|.</para>|
          s|while a post using Twitter is called a tweet||
          \|Twitter|d;\|twitter|d' doc/index.docbook
}

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

  # This is already installed by kdepimlibs >= 4.9.80
  rm "${pkgdir}"/usr/share/apps/cmake/modules/FindQtOAuth.cmake
}