summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c670d868d8b92a38c00f8973b4147fd8a37f7007 (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
42
43
44
45
46
47
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.

# Maintainer: imp0se <undefinedfunc@gmail.com>
pkgname=archey-plus
pkgver=0.2.8
pkgrel=1
pkgdesc="Based on Archey 0.2.8, adding support for Manjaro, Cinnamon dm/me, and bug fixes"

arch=('any')
url="https://github.com/imp0se/archey-plus"
license=('GPL')
depends=('python2' 'lsb-release' 'scrot')
makedepends=('git')
conflicts=('archey' 'archey2')
provides=('archey')
source=("git://github.com/imp0se/archey-plus.git")
md5sums=('SKIP')

#pkgver() {
#	cd ${pkgname}
#	git describe --always | sed 's|-|.|g'
#}

package() {
	#cd ${srcdir}
	#rm -rf archey
	#msg "Connecting to GIT server...."

	#if [ -d archey ] ; then
	#	cd archey && git pull origin
	#	msg "The local files are updated."
	#else
	#	git clone ${source}
	#fi

	#msg "GIT checkout done or server timeout"
	#msg "Starting make..."

	#cd ${srcdir}/archey

	cd "$srcdir/$pkgname"
	install -D -m644 COPYING ${pkgdir}/usr/share/licenses/archey-plus/COPYING
	install -D -m755 archey ${pkgdir}/usr/bin/archey || return 1
}