summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 04e72c134d483411ac4ae881989498a8ce929720 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Maintainer: Blood iron  <8100d1r0n@riseup.net>
pkgname=archlinuxinfo
pkgver=2
pkgrel=4
pkgdesc="C program to display system infomation alongside the Arch Linux logo"
arch=('i686' 'x86_64')
url="https://github.com/8100d1r0n/logo"
license=('GPL2')
depends=('glibc')
makedepends=('make')
source=(https://raw.githubusercontent.com/8100d1r0n/logo/master/$pkgname.c)
sha512sums=('SKIP')
package() {
	msg "Compile..."
	make $pkgname
	msg "Install..."
	install -Dm755 $pkgname "$pkgdir/usr/bin/$pkgname"
}