blob: dc9267f7f899edcd3f6c586abdd2a138f9242259 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Sneakatoo <corinne.9@hotmail.it>
_pkgname=wanda-the-fish
pkgname=gnome-shell-extension-$_pkgname
pkgver=2.0
pkgrel=1
pkgdesc="Extension that adds 'Wanda the Fish' to the Shell top panel"
arch=('any')
url="https://gitlab.com/tallero/wandathefish"
license=('GPL3')
depends=('gnome-shell<1:47' 'fortune-mod')
install=$_pkgname.install
_commit="aaf40ea73b0e3e27d8002b053d2881082d8f83d8"
source=("${_pkgname}::git+${url}#commit=${_commit}")
sha256sums=('SKIP')
package() {
cd "${_pkgname}"
ls
install -Dm644 COPYING -t "$pkgdir"/usr/share/licenses/$pkgname
install -d "$pkgdir"/usr/share/gnome-shell/extensions
cp -af "wandathefish@arcipelago.org" "$pkgdir"/usr/share/gnome-shell/extensions/
}
|