summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8edb491e142b61cfe1a411d744989a56b893e326 (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: Torben <git@letorbi.com>

pkgname=gnome-shell-extension-draw-on-your-screen2-git
_pkgname=DrawOnYourScreen2
_extid='draw-on-your-screen2@zhrexl.github.com'
pkgver=12.r77.ga7469e2
pkgrel=1
pkgdesc="A drawing extension for the GNOME Shell."
arch=('any')
url="https://github.com/zhrexl/DrawOnYourScreen2"
license=('GPL3')
depends=(gnome-shell gjs)
makedepends=('git')
source=('git+https://github.com/zhrexl/DrawOnYourScreen2.git')
sha256sums=('SKIP')

pkgver() {
  cd "$_pkgname"
  git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}

package() {
  install -d "$pkgdir/usr/share/gnome-shell/extensions/"
  cp -r "$_pkgname" "$pkgdir/usr/share/gnome-shell/extensions/"
  rm -r "$pkgdir/usr/share/gnome-shell/extensions/$_pkgname/.git"
  mv "$pkgdir/usr/share/gnome-shell/extensions/$_pkgname" "$pkgdir/usr/share/gnome-shell/extensions/$_extid"
}