summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 054dd976a76ebc0af511913fd535cd5b226d0a3a (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
# Maintainer: Daniel Julien-Neitzert <danieljulneit@gmail.com>

pkgname=ascii-pony-git
_gitname=ASCII-Pony
pkgrel=1
pkgdesc='Shows a pony and system information'
pkgver=20220221
arch=('any')
url='https://gitlab.com/mattia.basaglia/ASCII-Pony'
source=('git+https://gitlab.com/mattia.basaglia/ASCII-Pony.git')
provides=('systempony')
license=('GPLv3+' 'CC-BY-SA 3.0')
depends=('bash' 'coreutils' 'iproute2' 'inetutils' 'procps-ng' 
         'lsb-release' 'sed' 'grep' 'findutils' 'awk' 'lxc'
	 'sysfsutils' 'bc')
sha256sums=('SKIP')

package() {
	cd $_gitname
	make install PREFIX="$pkgdir/usr/local"
}

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