mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-17 22:02:12 +01:00
26 lines
610 B
Plaintext
26 lines
610 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=setxkbmap
|
|
pkgver=1.1.0
|
|
pkgrel=2
|
|
pkgdesc="set the keyboard using the X Keyboard Extension"
|
|
url="http://xorg.freedesktop.org/"
|
|
arch="all"
|
|
license="custom"
|
|
depends=
|
|
makedepends="pkgconfig libxkbfile-dev"
|
|
source="http://xorg.freedesktop.org/releases/individual/app/$pkgname-$pkgver.tar.bz2"
|
|
|
|
build ()
|
|
{
|
|
cd "$srcdir"/$pkgname-$pkgver
|
|
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
|| return 1
|
|
make || return 1
|
|
make DESTDIR=""$pkgdir"" install || return 1
|
|
}
|
|
md5sums="2f902e0a89aaf2b19e06e7f26c6efb3a setxkbmap-1.1.0.tar.bz2"
|