blob: 9fc94fcbd665affbc1070997f133ca6fb9a6f3ba (
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
|
# Maintainer: Guillaume Hayot <ghayot@postblue.info>
pkgname=gnome-shell-extension-gsconnect
pkgver=30
pkgrel=1
pkgdesc="KDE Connect implementation with GNOME Shell integration"
arch=('any')
url="https://github.com/andyholmes/gnome-shell-extension-gsconnect"
license=('GPL')
makedepends=('meson' 'ninja')
depends=('gnome-shell')
optdepends=(
'folks: Contacts integration (Evolution)'
'libgdata: Contacts integration (GNOME Online Accounts)'
'gsound: Themed sound effects'
'python-nautilus: Nautilus integration'
)
source=(https://github.com/andyholmes/$pkgname/archive/v$pkgver.tar.gz)
sha256sums=('1c73b9f430453dd8059fc18fb0744a8f146c620f1fc0d235ef941b990beba395')
package() {
cd "$pkgname-$pkgver"
meson build --prefix /usr --libdir lib/
DESTDIR="${pkgdir}" ninja -C build install
}
|