0849e8193e
Thanks to the pkgparentdir and pkgname functions, we can rewrite the GENTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
30 lines
708 B
Makefile
30 lines
708 B
Makefile
#############################################################
|
|
#
|
|
# rings
|
|
#
|
|
#############################################################
|
|
|
|
RINGS_VERSION = 1.2.3
|
|
RINGS_SITE = http://github.com/downloads/keplerproject/rings
|
|
RINGS_DEPENDENCIES = lua
|
|
|
|
define RINGS_BUILD_CMDS
|
|
$(MAKE) -C $(@D) CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS) -fPIC"
|
|
endef
|
|
|
|
define RINGS_INSTALL_TARGET_CMDS
|
|
$(MAKE) -C $(@D) LUA_LIBDIR="$(TARGET_DIR)/usr/lib/lua" \
|
|
LUA_DIR="$(TARGET_DIR)/usr/share/lua" install
|
|
endef
|
|
|
|
define RINGS_UNINSTALL_TARGET_CMDS
|
|
rm -f "$(TARGET_DIR)/usr/lib/lua/rings.so"
|
|
rm -f "$(TARGET_DIR)/usr/share/lua/stable.lua"
|
|
endef
|
|
|
|
define RINGS_CLEAN_CMDS
|
|
$(MAKE) -C $(@D) clean
|
|
endef
|
|
|
|
$(eval $(call GENTARGETS))
|