summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 96323c9b73ff0ab7081b501baff296725e35746e (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
# Maintainer: Steven Honeyman <stevenhoneyman at gmail com>

pkgname=yaft-git
pkgver=20140619
pkgrel=1
pkgdesc="yet another framebuffer terminal - git"
url="https://github.com/uobikiemukot/yaft"
license=('MIT')
arch=('i686' 'x86_64')
optdepends=('fbv: needed to set wallpaper')
makedepends=('ncurses')
source=(git+https://github.com/uobikiemukot/yaft.git)
md5sums=('SKIP')

pkgver() {
  cd "yaft"
  git log -1 --format="%cd" --date=short | sed 's|-||g'
}

build() {
	cd "yaft"
	make
}

package() {
	cd "yaft"
	make DESTDIR="$pkgdir" install
}