summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 45469ca2dae96da65311d2be4a465822e76f2543 (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
# Contributor: Melik Ludwig Manukyan <melik@archlinux.us>

pkgname=archey2
pkgver=20121013
pkgrel=1
pkgdesc="Simple python script that displays the arch logo and some basic information. Python 2.x version"

arch=('i686' 'x86_64')
url="http://github.com/djmelik/archey"
license=('GPL')
depends=('python2')
makedepends=('git')
provides=('archey')
conflicts=('archey3' 'archey')
md5sums=('d7b47e6e79a9926ce1f8502fb1070426')
source=('python27.patch')

_gitroot="git://github.com/djmelik/archey.git"
_gitname="archey"

build() {
	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 ${_gitroot}
	fi

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

	cd ${srcdir}/archey
	patch -p1 -i ${srcdir}/python27.patch

	install -D -m755 archey ${pkgdir}/usr/bin/archey || return 1
	install -D -m644 COPYING ${pkgdir}/usr/share/licenses/archey/COPYING
}