Skip to content

Instantly share code, notes, and snippets.

@auscompgeek
Last active July 30, 2017 02:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save auscompgeek/30dca096b6aab3e4979cdb6c1bb5ed21 to your computer and use it in GitHub Desktop.
Save auscompgeek/30dca096b6aab3e4979cdb6c1bb5ed21 to your computer and use it in GitHub Desktop.
# Ignore everything
*
# But not these files...
!.gitignore
!PKGBUILD
!.SRCINFO
pkgbase = indicator-kdeconnect
pkgdesc = Integrate KDEConnect on desktop environments that use AppIndicators (e.g. Unity)
pkgver = 0.9.1
pkgrel = 1
epoch = 1
url = https://github.com/bajoja/indicator-kdeconnect
arch = any
license = GPL
makedepends = cmake
depends = libappindicator-gtk3
depends = kdeconnect
depends = vala
depends = python-requests-oauthlib
depends = python-gobject
conflicts = indicator-kdeconnect-git
source = indicator-kdeconnect-0.9.1.tar.gz::https://github.com/Bajoja/indicator-kdeconnect/archive/0.9.1.tar.gz
sha256sums = 9263239df0b1300e93d25a64a2f8972487aa6047c99318b31de6b1973a0760bd
pkgname = indicator-kdeconnect
# Maintainer: Sebastian Gumprich <aur at gumpri dot ch>
# Contributor: twa022
# Contributor: shimi <shimi.chen@gmail.com>
# Contributor: Gustavo Castro <gustawho at gmail dot com>
# Contributor: auscompgeek <auscompgeek at zoho dot com>
pkgname=indicator-kdeconnect
epoch=1
pkgver=0.9.1
pkgrel=1
pkgdesc="Integrate KDEConnect on desktop environments that use AppIndicators (e.g. Unity)"
arch=(i686 x86_64)
url="https://github.com/bajoja/indicator-kdeconnect"
license=(LGPL)
conflicts=("${pkgname}-git")
depends=(libappindicator-gtk3 kdeconnect python-requests-oauthlib)
makedepends=(cmake vala)
optdepends=('python-gobject: for SMS send'
'python2-nautilus: for Nautilus send menu extension'
'nemo-python: for Nemo send menu extension')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Bajoja/indicator-kdeconnect/archive/${pkgver}.tar.gz")
sha256sums=('9263239df0b1300e93d25a64a2f8972487aa6047c99318b31de6b1973a0760bd')
build() {
mkdir build
cd build
cmake ../"${pkgname}-${pkgver}" -DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd build
make DESTDIR="${pkgdir}" install
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment