pptpd: moved to github
[packages.git] / devel / sysprof / Makefile
1 #
2 # Copyright (C) 2009-2013 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:=sysprof
11 PKG_VERSION:=1.2.0
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://sysprof.com
16 PKG_MD5SUM:=a81808d847732f8dafb59d26ec2eebbf
17
18 PKG_BUILD_DEPENDS:= glib2
19 PKG_FIXUP:=autoreconf
20 PKG_INSTALL:=1
21 PKG_BUILD_PARALLEL:=1
22
23 PKG_USE_MIPS16:=0
24
25 include $(INCLUDE_DIR)/package.mk
26 include $(INCLUDE_DIR)/kernel.mk
27
28 define Package/sysprof
29   SECTION:=devel
30   CATEGORY:=Development
31   TITLE:=Sysprof System Profiler
32   URL:=http://sysprof.com
33   DEPENDS:=+glib2
34 endef
35
36
37 define Package/sysprof/description
38         Sysprof is a statistical, system-wide profiler for Linux
39 endef
40
41 define Package/sysprof/install
42         $(INSTALL_DIR) $(1)/usr/bin
43         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/sysprof-cli $(1)/usr/bin/
44 endef
45
46 $(eval $(call BuildPackage,sysprof))