blob: 7b154d59253bc79e0777695bdedea8e9713837eb (
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
|
# Maintainer: wintersnowgod <git.xerox732@passinbox.com>
pkgname=gnome-shell-extension-nepali-date-git
_pkgname=nepali-date@biplab
pkgver=r44.759ff70
pkgrel=2
pkgdesc="A gnome-shell extension for Linux that displays Nepali calendar date on the top panel."
arch=('any')
url="https://github.com/Biplab-Dutta/Nepali_Date"
license=('GPL-3.0-only')
depends=('gnome-shell')
makedepends=('git')
source=("${_pkgname}::git+${url}.git")
sha256sums=('SKIP')
pkgver() {
cd "${_pkgname}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
install -d "${pkgdir}/usr/share/gnome-shell/extensions/${_pkgname}"
cd "${_pkgname}"
cp extension.js metadata.json stylesheet.css "${pkgdir}/usr/share/gnome-shell/extensions/${_pkgname}"
}
|