summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: dfd288018e93231d5165f7160f76f947d3fbac12 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
# Maintainer: N.E. Neal <contact at [neneal] dog com>
pkgname=termite-style-git
pkgver=r19.6c77e36
pkgrel=1
epoch=
pkgdesc="A simple program to change colors and fonts of termite in real time."
arch=('any')
url="https://github.com/adi1090x/termite-style"
license=('GPL')
groups=()
depends=('termite' 'bash')
makedepends=('git')
checkdepends=()
optdepends=()  
provides=()    
conflicts=() 
replaces=()
backup=()   
options=() 
install=
changelog=  
source=("${pkgname}::git+git://github.com/adi1090x/termite-style.git")
noextract=()
md5sums=(SKIP)                                                         
validpgpkeys=()

pkgver() {
	cd $startdir/$pkgname
	printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

prepare() {
        cd $srcdir/$pkgname
        chmod +x setup
}

package() {
        cd "$pkgname"
        ./setup
}