blob: b02bec1f2985a77906b6ed59d083b5a34d4531c0 (
plain) (
tree)
|
|
# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org>
pkgname=adjbacklight
pkgver=7
pkgrel=1
pkgdesc="Convient method for adjusting the backlight on your portable computer"
arch=('x86_64' 'i686')
url="https://github.com/maandree/adjbacklight"
license=('GPL3')
depends=('linux')
makedepends=('gcc' 'make' 'coreutils')
source=(https://github.com/maandree/adjbacklight/archive/${pkgver}.tar.gz)
sha256sums=(07b16afed6e7ce9228b9c6e607f0fe5bdaf232dd121b0f977387a32497326180)
build() {
cd "${srcdir}/adjbacklight-${pkgver}"
make DESTDIR="${pkgdir}/"
}
package() {
cd "${srcdir}/adjbacklight-${pkgver}"
make DESTDIR="${pkgdir}/" install
}
|