mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 11:14:35 +08:00
30 lines
826 B
Bash
30 lines
826 B
Bash
# Maintainer: almack <almack@chakraos.org>
|
|
|
|
pkgname=xorg-setxkbmap
|
|
pkgver=1.3.1
|
|
pkgrel=1
|
|
pkgdesc='Set the keyboard using the X Keyboard Extension'
|
|
url='http://xorg.freedesktop.org/'
|
|
license=('custom')
|
|
arch=('i686' 'x86_64')
|
|
depends=('libxkbfile')
|
|
makedepends=('xorg-util-macros')
|
|
source=(${url}/releases/individual/app/setxkbmap-${pkgver}.tar.bz2{,.sig})
|
|
sha256sums=('a9ddb3963f263ba13f0ea105d8c45a531832140530217cc559587bb94f02d3e1'
|
|
'SKIP')
|
|
validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith <alan.coopersmith@oracle.com>
|
|
groups=('xorg-apps' 'xorg')
|
|
|
|
build() {
|
|
cd setxkbmap-${pkgver}
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd setxkbmap-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
|
|
}
|
|
|