47e0779792
[Thomas: - rename from comix_cursors to comix-cursors - change prompt from comix to comix-cursors in order to match the package name - use <pkg>_STRIP_COMPONENTS instead of overriding the extract commands. - the license is GPLv3 according to the project website.] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
20 lines
598 B
Makefile
20 lines
598 B
Makefile
################################################################################
|
|
#
|
|
# comix-cursors
|
|
#
|
|
################################################################################
|
|
|
|
COMIX_CURSORS_VERSION = 0.8.2
|
|
COMIX_CURSORS_SITE = http://limitland.de/downloads/comixcursors
|
|
COMIX_CURSORS_SOURCE = ComixCursors-$(COMIX_CURSORS_VERSION).tar.bz2
|
|
COMIX_CURSORS_LICENSE = GPLv3
|
|
COMIX_CURSORS_STRIP_COMPONENTS = 0
|
|
|
|
define COMIX_CURSORS_INSTALL_TARGET_CMDS
|
|
mkdir -p $(TARGET_DIR)/usr/share/cursors/xorg-x11
|
|
cp -a $(@D)/* \
|
|
$(TARGET_DIR)/usr/share/cursors/xorg-x11
|
|
endef
|
|
|
|
$(eval $(generic-package))
|