mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
657 B
Bash
22 lines
657 B
Bash
# Maintainer: Philipp Scholl <pscholl@bawue.de>
|
|
# Modified by OpenPogo
|
|
|
|
pkgname=kbd
|
|
pkgver=1.15
|
|
pkgrel=1
|
|
pkgdesc="Keytable files and keyboard utilities"
|
|
arch=(arm)
|
|
url="ftp://ftp.altlinux.org/pub/people/legion/kbd/"
|
|
license=('GPL')
|
|
groups=('base')
|
|
depends=()
|
|
source=(ftp://ftp.altlinux.org/pub/people/legion/kbd/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('ba3fd20e6c79e58422c3cc6b28718939')
|
|
|
|
build() {
|
|
cd ${startdir}/src/${pkgname}-${pkgver}
|
|
./configure --prefix=/opt --datadir=/opt/share/kbd --mandir=/opt/share/man
|
|
make KEYCODES_PROGS=yes RESIZECONS_PROGS=yes || return 1
|
|
make KEYCODES_PROGS=yes RESIZECONS_PROGS=yes DESTDIR=${startdir}/pkg install
|
|
}
|
|
|