[packages] massive change: replace occurences of -I$(STAGING_DIR)/{include,usr/includ...
[packages.git] / lang / luaprofiler / Makefile
1
2 # Copyright (C) 2006-2009 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=luaprofiler
11 PKG_VERSION:=2.0.2
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://luaforge.net/frs/download.php/3400
16 PKG_MD5SUM:=611435c8e61e1a330ee0aa8ddc9c124a
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/luaprofiler
21   SUBMENU:=Lua
22   SECTION:=lang
23   CATEGORY:=Languages
24   TITLE:=Lua Profiler
25   URL:=http://luaprofiler.luaforge.net
26 endef
27
28 define Package/luaprofiler/description
29  Profile any Lua application
30 endef
31
32 define Build/Configure
33
34 endef
35
36 TARGET_CFLAGS += $(FPIC) $(TARGET_CPPFLAGS)
37
38 TARGET_LDFLAGS += -llua
39
40 define Build/Compile
41         $(MAKE) -C $(PKG_BUILD_DIR) \
42                 $(TARGET_CONFIGURE_OPTS) \
43                 CFLAGS="$(TARGET_CFLAGS)" \
44                 LDFLAGS="$(TARGET_LDFLAGS)" \
45                 -f Makefile.linux
46 endef
47
48 define Package/luaprofiler/install
49         $(INSTALL_DIR) $(1)/usr/lib/lua
50         $(CP) $(PKG_BUILD_DIR)/bin/profiler.so $(1)/usr/lib/lua/
51 endef
52
53 $(eval $(call BuildPackage,luaprofiler))