2 # Copyright (C) 2006 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
9 include $(TOPDIR
)/rules.mk
15 PKG_SOURCE
:=$(PKG_NAME
)-$(PKG_VERSION
).
tar.gz
16 PKG_SOURCE_URL
:=http
://www.lua.org
/ftp
/ \
17 http
://ftp.gwdg.de
/pub
/languages
/lua
/ \
18 http
://mirrors.dotsrc.org
/lua
/ \
19 http
://www.tecgraf.puc-rio.br
/lua
/ftp
/
20 PKG_MD5SUM
:=a70a8dfaa150e047866dc01a46272599
22 PKG_BUILD_DIR
:=$(BUILD_DIR
)/$(PKG_NAME
)-$(PKG_VERSION
)
23 PKG_INSTALL_DIR
:=$(PKG_BUILD_DIR
)/ipkg-install
25 include $(INCLUDE_DIR
)/package.mk
27 define Package
/lua
/Default
31 TITLE
:=LUA programming language
32 URL
:=http
://www.lua.org
/
35 define Package
/lua
/Default
/description
36 Lua is a powerful light-weight programming language designed for extending
37 applications. Lua is also frequently used
as a general-purpose
, stand-alone
38 language. Lua is free software.
42 $(call Package
/lua
/Default
)
49 define Package
/liblua
/description
50 $(call Package
/lua
/Default
/description
)
51 This package contains the LUA shared libraries
, needed by other programs.
55 $(call Package
/lua
/Default
)
60 define Package
/lua
/description
61 $(call Package
/lua
/Default
/description
)
62 This package contains the LUA language interpreter.
66 $(call Package
/lua
/Default
)
71 define Package
/luac
/description
72 $(call Package
/lua
/Default
/description
)
73 This package contains the LUA language compiler.
76 define Package
/lua-examples
77 $(call Package
/lua
/Default
)
82 define Package
/lua-examples
/description
83 $(call Package
/lua
/Default
/description
)
84 This package contains LUA language examples.
87 define Build
/Configure
90 TARGET_CFLAGS
+= -DLUA_USE_LINUX
93 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
94 CC
="$(TARGET_CROSS)gcc" \
95 LD
="$(TARGET_CROSS)ld" \
96 AR
="$(TARGET_CROSS)ar rcu" \
97 RANLIB
="$(TARGET_CROSS)ranlib" \
99 CFLAGS
="$(TARGET_CPPFLAGS) $(TARGET_CFLAGS)" \
100 MYLDFLAGS
="$(TARGET_LDFLAGS)" \
101 PKG_VERSION
=$(PKG_VERSION
) \
103 rm -rf
$(PKG_INSTALL_DIR
)
104 mkdir
-p
$(PKG_INSTALL_DIR
)
105 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
106 INSTALL_TOP
="$(PKG_INSTALL_DIR)/usr" \
110 define Build
/InstallDev
111 mkdir
-p
$(1)/usr
/include
112 $(CP
) $(PKG_INSTALL_DIR
)/usr
/include/lua
{,lib
,conf
}.h
$(1)/usr
/include/
113 $(CP
) $(PKG_INSTALL_DIR
)/usr
/include/lauxlib.h
$(1)/usr
/include/
114 $(CP
) $(PKG_INSTALL_DIR
)/usr
/include/lnum_config.h
$(1)/usr
/include/
115 mkdir
-p
$(1)/usr
/lib
116 $(CP
) $(PKG_INSTALL_DIR
)/usr
/lib
/liblua.
* $(1)/usr
/lib
/
117 ln
-sf liblua.so.
$(PKG_VERSION
) $(1)/usr
/lib
/liblualib.so
120 define Package
/liblua
/install
121 $(INSTALL_DIR
) $(1)/usr
/lib
122 $(CP
) $(PKG_INSTALL_DIR
)/usr
/lib
/liblua.so
* $(1)/usr
/lib
/
125 define Package
/lua
/install
126 $(INSTALL_DIR
) $(1)/usr
/bin
127 $(INSTALL_BIN
) $(PKG_INSTALL_DIR
)/usr
/bin
/lua
$(1)/usr
/bin
/
130 define Package
/luac
/install
131 $(INSTALL_DIR
) $(1)/usr
/bin
132 $(INSTALL_BIN
) $(PKG_INSTALL_DIR
)/usr
/bin
/luac
$(1)/usr
/bin
/
135 define Package
/lua-examples
/install
136 $(INSTALL_DIR
) $(1)/usr
/share
/lua
/examples
137 $(INSTALL_DATA
) $(PKG_BUILD_DIR
)/test/*.lua \
138 $(1)/usr
/share
/lua
/examples
/
141 $(eval
$(call BuildPackage
,liblua
))
142 $(eval
$(call BuildPackage
,lua
))
143 $(eval
$(call BuildPackage
,luac
))
144 $(eval
$(call BuildPackage
,lua-examples
))