From 0be822175bb3cef0534b9a0597e84ae1ee6374ec Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Thu, 4 Sep 2014 01:57:36 -0300 Subject: remove nonprism suffix and add complex pkgrel on nonprism packages --- nonprism/choqok/PKGBUILD | 56 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 nonprism/choqok/PKGBUILD (limited to 'nonprism/choqok/PKGBUILD') diff --git a/nonprism/choqok/PKGBUILD b/nonprism/choqok/PKGBUILD new file mode 100644 index 000000000..6a815e7c6 --- /dev/null +++ b/nonprism/choqok/PKGBUILD @@ -0,0 +1,56 @@ +# $Id: PKGBUILD 96779 2013-09-04 22:09:55Z andrea $ +# Maintainer (Arch): Peter Richard Lewis +# Contributor (Arch): Andrea Scarpino +# Contributor (Arch): Emanuele Rossi +# Contributor (Arch): Bram Schoenmakers +# Maintainer: Márcio Silva + +pkgname=choqok +pkgver=1.4 +pkgrel=1.nonprism1 +pkgdesc="A status.net client for KDE, without Twitter support" +url='http://choqok.gnufolks.org/' +license=('GPL') +arch=('i686' 'x86_64' 'mips64el') +conflicts=(${pkgname}-nonprism) +replaces=(${pkgname}-nonprism) +depends=('kdebase-runtime' 'qjson' 'qoauth' 'qca-ossl') +makedepends=('cmake' 'automoc4') +optdepends=('kdebase-konqueror: proxy support') +install="${pkgname}.install" +source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz") +md5sums=('2efe34ed903b448a21d9233d8033dbdb') + +prepare() { + mkdir build + + 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|.| + s|while a post using Twitter is called a tweet|| + \|Twitter|d;\|twitter|d' doc/index.docbook +} + +build() { + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} -- cgit v1.2.3-54-g00ecf