summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-10-24 21:33:35 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-10-24 21:33:35 +0000
commitabe54be9b67ec0a3f3b4e47d9e020a2850d0b4aa (patch)
tree9836f6fe6bc7d2c30a12e620ea8b6580a08918d7
parent596ef7307137cf6d246b49eccc241e46fdf44496 (diff)
package/perf: move out to packages/devel/
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28560 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--package/perf/Makefile52
1 files changed, 0 insertions, 52 deletions
diff --git a/package/perf/Makefile b/package/perf/Makefile
deleted file mode 100644
index 0a78fa627..000000000
--- a/package/perf/Makefile
+++ /dev/null
@@ -1,52 +0,0 @@
-#
-# Copyright (C) 2011 OpenWrt.org
-#
-# This is free software, licensed under the GNU General Public License v2.
-# See /LICENSE for more information.
-#
-
-include $(TOPDIR)/rules.mk
-include $(INCLUDE_DIR)/kernel.mk
-
-PKG_NAME:=perf
-PKG_RELEASE:=1
-
-include $(INCLUDE_DIR)/package.mk
-
-define Package/perf
- SECTION:=utils
- CATEGORY:=Utilities
- DEPENDS:= +libdw +libelf1 +libpthread +librt @BROKEN
- TITLE:=Linux performance monitoring tool
- VERSION:=$(LINUX_VERSION)-$(PKG_RELEASE)
- URL:=http://www.kernel.org
-endef
-
-define Package/perf/description
- perf is the Linux performance monitoring tool
-endef
-
-define Build/Prepare
-endef
-
-define Build/Compile
- $(MAKE) -C $(LINUX_DIR)/tools/perf \
- ARCH="$(LINUX_KARCH)" \
- NO_LIBPERL=1 \
- NO_LIBPYTHON=1 \
- NO_NEWT=1 \
- CROSS_COMPILE="$(TARGET_CROSS)" \
- CC="$(TARGET_CC)" \
- LD="$(TARGET_CROSS)ld" \
- CFLAGS="$(TARGET_CFLAGS) $(TARGET_CPPFLAGS)" \
- LDFLAGS="$(TARGET_LDFLAGS)" \
- V=1 \
- prefix=/usr
-endef
-
-define Package/perf/install
- $(INSTALL_DIR) $(1)/usr/bin
- $(INSTALL_BIN) $(LINUX_DIR)/tools/perf/perf $(1)/usr/bin/
-endef
-
-$(eval $(call BuildPackage,perf))