Add vpnc-scripts package with up-to-date script
[openwrt/svn-archive/archive.git] / lang / python-ifconfig / Makefile
1 #
2 # Copyright (C) 2010 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:=python-ifconfig
11 PKG_VERSION:=0.1
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=python-ifconfig-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://python-ifconfig.googlecode.com/files/
16 PKG_MD5SUM:=6d780d29c1df1acc17195bde7be0e394
17
18 PKG_BUILD_DIR:=$(BUILD_DIR)/python-ifconfig-$(PKG_VERSION)
19 PKG_BUILD_DEPENDS:=python
20
21 include $(INCLUDE_DIR)/package.mk
22 $(call include_mk, python-package.mk)
23
24 define Package/python-ifconfig
25 SUBMENU:=Python
26 SECTION:=lang
27 CATEGORY:=Languages
28 TITLE:=python-ifconfig
29 URL:=http://code.google.com/p/python-ifconfig/
30 DEPENDS:=+python
31 endef
32
33 define Package/python-ifconfig/description
34 Display network interface status.
35 endef
36
37 define Build/Compile
38 $(call Build/Compile/PyMod,,install --prefix="$(PKG_INSTALL_DIR)/usr")
39 endef
40
41 define Package/python-ifconfig/install
42 $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
43 $(CP) \
44 $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
45 $(1)$(PYTHON_PKG_DIR)
46 endef
47
48 $(eval $(call BuildPackage,python-ifconfig))