new pkg: xorg-xgamma -> 1.0.5

This commit is contained in:
Drake Justice 2014-06-28 16:07:58 -04:00
parent 7d191322cb
commit e20dce450f

27
xorg-xgamma/PKGBUILD Normal file
View File

@ -0,0 +1,27 @@
# Maintainer: Drake Justice <djustice@chakraos.org>
pkgname=xorg-xgamma
pkgver=1.0.5
pkgrel=1
pkgdesc="Alter a monitor's gamma correction"
arch=('x86_64')
url="http://xorg.freedesktop.org/"
license=('custom')
depends=('libx11' 'libxxf86vm')
makedepends=('xorg-util-macros')
groups=('xorg-apps' 'xorg')
source=(http://xorg.freedesktop.org/archive/individual/app/xgamma-${pkgver}.tar.bz2)
sha1sums=('9cd3272fd24f51b75223cf9c59949ded6df04800')
build() {
cd "${srcdir}/xgamma-${pkgver}"
./configure --prefix=/usr
make
}
package() {
cd "${srcdir}/xgamma-${pkgver}"
make DESTDIR="${pkgdir}" install
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
}