mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 12:25:11 +08:00
30 lines
815 B
Bash
30 lines
815 B
Bash
# Maintainer: Drake Justice <djustice@chakraos.org>
|
|
|
|
pkgname=xorg-xrandr
|
|
pkgver=1.4.2
|
|
pkgrel=1
|
|
pkgdesc="Primitive command line interface to RandR extension"
|
|
arch=(x86_64)
|
|
url="http://xorg.freedesktop.org/"
|
|
license=('custom')
|
|
depends=('libxrandr' 'libx11')
|
|
makedepends=('xorg-util-macros')
|
|
groups=('xorg-apps' 'xorg')
|
|
source=(http://xorg.freedesktop.org/archive/individual/app/xrandr-${pkgver}.tar.bz2)
|
|
sha256sums=('b2e76ee92ff827f1c52ded7c666fe6f2704ca81cdeef882397da4e3e8ab490bc')
|
|
|
|
build() {
|
|
cd "${srcdir}/xrandr-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/xrandr-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
|
|
install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
|
|
rm -f "${pkgdir}/usr/bin/xkeystone"
|
|
}
|
|
|