summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 22dc1bcb334b5fe4b758c3e399ab1ac9bb5a7257 (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
# Contributor: Florian Dejonckheere <florian at floriandejonckheere dot be>
# Contributor: Murtuza Akhtari <inxsible at gmail dot com>

pkgname=thinkalert
pkgver=0.1
pkgrel=2
pkgdesc="program for manipulating the ThinkLight LED on Thinkpad laptops. "
arch=('i686' 'x86_64')
url="http://www.mike.tl/other/ThinkAlert.html"
license=('unknown')
source=("https://github.com/floriandejonckheere/thinkalert/archive/v${pkgver}.tar.gz")
md5sums=('f71c5eccbf98d75053e0af2b4490257e')

build()
{
	cd "${srcdir}/${pkgname}-${pkgver}"
	gcc -o ${pkgname} ${pkgname}.c
}

package()
{
	cd "${srcdir}/${pkgname}-${pkgver}"
	install -Dm4755 ${pkgname} ${pkgdir}/usr/bin/${pkgname}
}