mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 20:07:14 +08:00
28 lines
684 B
Bash
28 lines
684 B
Bash
# Maintainer: Drake Justice <djustice@chakraos.org>
|
|
|
|
pkgname=xorg-xgamma
|
|
pkgver=1.0.6
|
|
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=('af1484d0d70bc71dc9d3b7b95645881b7165c41b')
|
|
|
|
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"
|
|
}
|
|
|