blob: 27d7d9a98e6feb4088ee8b058edddde7f8a47e29 (
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
|
# Maintainer: Guillaume Hayot <ghayot@postblue.info>
pkgname=gnome-shell-extension-gsconnect
pkgver=11
pkgrel=1
pkgdesc="KDE Connect implementation with GNOME Shell integration"
arch=('any')
url="https://github.com/andyholmes/gnome-shell-extension-gsconnect"
license=('GPL')
makedepends=('unzip')
depends=('gnome-shell')
optdepends=(
'sshfs: Browse remote files'
'folks: Contacts integration (Evolution)'
'libgdata: Contacts integration (GNOME Online Accounts)'
'python2-nautilus: Nautilus integration'
'gsound: Themed sound effects'
)
source=("$pkgname-$pkgver.zip::https://github.com/andyholmes/$pkgname/releases/download/v$pkgver/gsconnect.andyholmes.github.io.zip")
noextract=('$pkgname-$pkgver.zip')
sha256sums=('7a7cdede7e6a347ba15cbf28ce243f92495e13f2158f9336eacc6aa9ba8deb02')
package() {
mkdir -p "$pkgdir/usr/share/gnome-shell/extensions/"
unzip -q "$srcdir/$pkgname-$pkgver.zip" -d "$pkgdir/usr/share/gnome-shell/extensions/gsconnect@andyholmes.github.io"
}
|