6bdd55eb3ac4fe97f59eb26d4d522853ba816cd5
[openwrt/svn-archive/archive.git] / net / mercurial / Makefile
1 #
2 # Copyright (C) 2006-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:=mercurial
11 PKG_VERSION:=1.6.2
12 PKG_RELEASE:=1
13
14 PKG_SOURCE_URL:=http://mercurial.selenic.com/release
15 PKG_SOURCE:=mercurial-$(PKG_VERSION).tar.gz
16 PKG_MD5SUM:=847359d7488caf8074a69d4b87ca64d2
17 PKG_BUILD_DEPENDS:=python-mini
18
19 include $(INCLUDE_DIR)/package.mk
20 $(call include_mk, python-package.mk)
21
22 define Package/mercurial
23 SECTION:=net
24 CATEGORY:=Network
25 DEPENDS:=python
26 TITLE:=Mercurial Source Control Management (SCM) system
27 URL:=http://mercurial.selenic.com/
28 SUBMENU:=Version Control Systems
29 endef
30
31 define Package/mercurial/description
32 A fast, lightweight Source Control Management system designed for efficient handling of very large distributed projects.
33 endef
34
35 define Build/Compile
36 $(call Build/Compile/PyMod,, \
37 install --prefix="$(PKG_INSTALL_DIR)", \
38 )
39 endef
40
41 define Package/mercurial/install
42 $(INSTALL_DIR) $(1)/usr/bin
43 $(INSTALL_DIR) $(1)/usr/lib
44 $(CP) $(PKG_INSTALL_DIR)/bin $(1)/usr
45 $(CP) $(PKG_INSTALL_DIR)/lib $(1)/usr
46 endef
47
48 $(eval $(call BuildPackage,mercurial))