mirror of
https://github.com/oleid/gnome-shell-teatime.git
synced 2022-04-29 18:53:50 +00:00
32 lines
630 B
Bash
32 lines
630 B
Bash
# Maintainer: Olaf Leidinger <oleid@mescharet.de>
|
|
|
|
pkgname=gnome-shell-extension-teatime
|
|
_gitname=gnome-shell-teatime
|
|
pkgver=54.a6a3095
|
|
pkgrel=1
|
|
pkgdesc="A tea drawing timer for the gnome-shell"
|
|
arch=('any')
|
|
url="https://github.com/oleid/gnome-shell-teatime"
|
|
license=('GPL')
|
|
depends=('gnome-shell')
|
|
makedepends=('git' 'intltool' 'glib2')
|
|
source=("git${url#https}.git")
|
|
|
|
pkgver() {
|
|
cd $_gitname
|
|
echo $(git rev-list --count master).$(git rev-parse --short master)
|
|
}
|
|
|
|
build() {
|
|
cd $_gitname
|
|
./autogen.sh
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
package() {
|
|
cd $_gitname
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha256sums=('SKIP')
|