blob: 4eaa654753bc7539a43e22a22eb37296f3508a5d (
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
28
|
# Maintainer: Mendel Greenberg <chabad360 at gmail dot com>
pkgname=gnome-shell-extension-argos-git
pkgver=r51.e7c69ff
pkgrel=3
pkgdesc="Create GNOME Shell extensions in seconds"
arch=('any')
url="https://github.com/p-e-w/argos"
license=('GPLv3')
depends=('gnome-shell')
makedepends=('git')
groups=('gnome-shell-extensions')
source=('git+https://github.com/p-e-w/argos.git')
md5sums=('SKIP')
prepare() {
cd argos
printf '0+%s+g%s' $(git rev-list --count HEAD) $(git rev-parse --short HEAD)
}
package() {
mkdir -p "$pkgdir/usr/share/gnome-shell/extensions/"
cp -r argos/. "$pkgdir/usr/share/gnome-shell/extensions/"
rm -rf "$pkgdir/usr/share/gnome-shell/extensions/.git" "$pkgdir/usr/share/gnome-shell/extensions/README.md"
}
if [ -z "$install" ]; then
install=gschemas.install
fi
|