blob: b4d918f6efbb86f75431c6ee455ebb8a99265fd2 (
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: D. Can Celasun <can[at]dcc[dot]im>
# Contributor: Wynne Plaga <rwplaga dot linux at gmail dot com>
pkgname=gogh-git
_pkgname=gogh
_reponame=Gogh
pkgver=1134.0aee76d
pkgrel=1
pkgdesc="Color Scheme for Gnome Terminal, Pantheon Terminal and Tilix"
arch=('any')
url="github.com/Gogh-Co/Gogh"
license=('MIT')
depends=('dconf' 'wget' 'util-linux-libs')
makedepends=('git')
source=("git+https://github.com/Gogh-Co/Gogh.git")
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/$_reponame"
printf "%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd "$srcdir/$_reponame"
install -D -m755 "${_pkgname}.sh" "$pkgdir/usr/bin/gogh"
}
|