summaryrefslogtreecommitdiffstats
path: root/lang/pyrrd/Makefile
blob: c919cd718af8e3273f527389c53dca13ba0e415e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#
# 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

PKG_NAME:=pyrrd
PKG_VERSION:=0.1.0
PKG_RELEASE:=2

PKG_SOURCE:=PyRRD-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://pypi.python.org/packages/source/P/PyRRD/
PKG_MD5SUM:=c33a0760b42a23e45e423b8b9f2cd0b0

PKG_BUILD_DEPENDS:=python
PKG_BUILD_DIR:=$(BUILD_DIR)/PyRRD-$(PKG_VERSION)

include $(INCLUDE_DIR)/package.mk
$(call include_mk, python-package.mk)

define Package/pyrrd
  SUBMENU:=Python
  SECTION:=lang
  CATEGORY:=Languages
  TITLE:=PyRRD - An Object-Oriented Python Interface for RRDTool
  URL:=http://code.google.com/p/pyrrd/
  DEPENDS:=+python +distribute +rrdtool
endef

define Package/pyrrd/description
  An Object-Oriented Python Interface for RRDTool
endef

define Build/Compile
	$(call Build/Compile/PyMod,., \
		install --prefix="/usr" --root="$(PKG_INSTALL_DIR)" \
	)
endef

define Package/pyrrd/install
	$(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
	$(CP) \
		$(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
		$(1)$(PYTHON_PKG_DIR)/
endef

$(eval $(call BuildPackage,pyrrd))