diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-09-04 01:57:36 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-09-04 01:57:36 -0300 |
commit | 0be822175bb3cef0534b9a0597e84ae1ee6374ec (patch) | |
tree | c9a4fb91c61309280fd8201c7cb52789ce02a7c6 /nonprism/choqok-nonprism | |
parent | 468e115b1432c745ce9ccf06d2fcca6b3cfb7227 (diff) |
remove nonprism suffix and add complex pkgrel on nonprism packages
Diffstat (limited to 'nonprism/choqok-nonprism')
-rw-r--r-- | nonprism/choqok-nonprism/PKGBUILD | 57 | ||||
-rw-r--r-- | nonprism/choqok-nonprism/choqok.install | 11 |
2 files changed, 0 insertions, 68 deletions
diff --git a/nonprism/choqok-nonprism/PKGBUILD b/nonprism/choqok-nonprism/PKGBUILD deleted file mode 100644 index 62d23478c..000000000 --- a/nonprism/choqok-nonprism/PKGBUILD +++ /dev/null @@ -1,57 +0,0 @@ -# $Id: PKGBUILD 96779 2013-09-04 22:09:55Z andrea $ -# Maintainer (Arch): Peter Richard Lewis <plewis@aur.archlinux.org> -# Contributor (Arch): Andrea Scarpino <andrea@archlinux.org> -# Contributor (Arch): Emanuele Rossi <newdna1510@yahoo.it> -# Contributor (Arch): Bram Schoenmakers <me@bramschoenmakers.nl> -# Maintainer: Márcio Silva <coadde@parabola.nu> - -_pkgname=choqok -pkgname=choqok-nonprism -pkgver=1.4 -pkgrel=1.1 -pkgdesc="A status.net client for KDE, without Twitter support" -url='http://choqok.gnufolks.org/' -license=('GPL') -arch=('i686' 'x86_64' 'mips64el') -provides=("$_pkgname=$pkgver") -conflicts=($_pkgname) -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|.</para>| - 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 -} diff --git a/nonprism/choqok-nonprism/choqok.install b/nonprism/choqok-nonprism/choqok.install deleted file mode 100644 index e70c054ec..000000000 --- a/nonprism/choqok-nonprism/choqok.install +++ /dev/null @@ -1,11 +0,0 @@ -post_install() { - xdg-icon-resource forceupdate --theme hicolor &> /dev/null -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} |