blob: 5df609529aea5935c0276bcbb1fb2b57b04cb239 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#Maintainer: zpydr <zpydr at openmailbox dot org>
pkgname=gnome-shell-extension-taskbar
pkgver=57.0
pkgrel=1
pkgdesc="GNOME Shell Extension TaskBar"
arch=('any')
url="https://extensions.gnome.org/extension/584/taskbar/"
license=('GPL')
depends=('gnome-shell')
source=('https://github.com/zpydr/gnome-shell-extension-taskbar/archive/57.0.tar.gz')
md5sums=('SKIP')
prepare() {
tar -xvf $pkgver.tar.gz
}
package() {
rm $pkgver.tar.gz
cd $pkgname-$pkgver
mkdir -p "$pkgdir/usr/share/gnome-shell/extensions/TaskBar@zpydr/"
cp -a extension.js images lib.js LICENSE locale metadata.json prefs.js README schemas scripts stylesheet.css TaskBar.pot windows.js "$pkgdir/usr/share/gnome-shell/extensions/TaskBar@zpydr/"
}
|