mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-04 23:03:10 +02:00
44 lines
1.2 KiB
Makefile
44 lines
1.2 KiB
Makefile
# Copyright (C) 2010 tuxbrain.com
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=keymouse
|
|
PKG_VERSION:=1.0
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=http://download2.berlios.de/keymouse
|
|
PKG_CAT:=bzcat
|
|
PKG_BUILD_DEPENDS:=libX11
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/keymouse
|
|
TITLE:=Just a simple mouse emulator
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
URL:=http://keymouse.berlios.de
|
|
endef
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/keymouse-$(PKG_VERSION)
|
|
|
|
define Package/keymouse/description
|
|
Just a simple mouse emulator (for Linux) that can be controlled with keyboard. Useful on laptop with broken touch pad or in absence of external mouse device.Requires uinput kernel module
|
|
endef
|
|
|
|
define Build/Configure
|
|
(cd "$(PKG_BUILD_DIR)"; ./autogen.sh );
|
|
$(call Build/Configure/Default)
|
|
|
|
endef
|
|
define Package/keymouse/install
|
|
$(INSTALL_DIR) $(1)/usr/bin $(1)/etc $(1)/etc/init.d
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/keymouse $(1)/usr/bin/
|
|
$(INSTALL_DATA) $(FILES_DIR)/keymouse.cfg $(1)/etc/
|
|
$(INSTALL_BIN) $(FILES_DIR)/keymouse.init $(1)/etc/init.d/keymouse
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,keymouse))
|