mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
24 lines
723 B
Makefile
24 lines
723 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
|
|
PKG_NAME="bkeymaps"
|
|
PKG_VERSION="1.13"
|
|
PKG_SHA256="59d41ddb0c7a92d8ac155a82ed2875b7880c8957ea4308afa633c8b81e5b8887"
|
|
PKG_ARCH="any"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="http://www.alpinelinux.org"
|
|
PKG_URL="http://dev.alpinelinux.org/archive/bkeymaps/$PKG_NAME-$PKG_VERSION.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain busybox"
|
|
PKG_SECTION="system"
|
|
PKG_SHORTDESC="bkeymaps: binary keyboard maps for busybox"
|
|
PKG_LONGDESC="bkeymaps: binary keyboard maps for busybox"
|
|
|
|
make_target() {
|
|
: # nothing todo, we install manually
|
|
}
|
|
|
|
makeinstall_target() {
|
|
mkdir -p $INSTALL/usr/lib/keymaps
|
|
cp -PR bkeymaps/* $INSTALL/usr/lib/keymaps
|
|
}
|