[packages] git: update to 1.7.10.4
[openwrt/svn-archive/archive.git] / net / git / Makefile
1 #
2 # Copyright (C) 2009-2012 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:=git
11 PKG_VERSION:=1.7.10.4
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://git-core.googlecode.com/files/
16 PKG_MD5SUM:=68319d593d051ef76c26e945bbd2d7ac
17
18 PKG_INSTALL:=1
19 PKG_BUILD_PARALLEL:=1
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/git
24 SECTION:=net
25 CATEGORY:=Network
26 SUBMENU:=Version Control Systems
27 DEPENDS:=+libopenssl +libcurl +libpthread
28 TITLE:=The fast version control system
29 URL:=http://git-scm.com
30 endef
31
32 define Package/git/description
33 Git is a free & open source, distributed version control system
34 designed to handle everything from small to very large projects
35 with speed and efficiency.
36 endef
37
38 MAKE_FLAGS := \
39 CC="$(TARGET_CC)" \
40 CFLAGS="$(TARGET_CFLAGS)" \
41 CPPFLAGS="$(TARGET_CPPFLAGS)" \
42 LDFLAGS="$(TARGET_LDFLAGS)" \
43 NO_EXPAT="YesPlease" \
44 NO_MKSTEMPS="YesPlease" \
45 NO_GETTEXT="YesPlease" \
46 NO_IPV6="YesPlease" \
47 NO_ICONV="YesPlease" \
48 NO_NSEC="YesPlease" \
49 NO_PERL="YesPlease" \
50 NO_PYTHON="YesPlease" \
51 NO_TCLTK="YesPlease"
52
53 define Build/Configure
54 $(MAKE) -C $(PKG_BUILD_DIR) \
55 configure
56
57 ( cd $(PKG_BUILD_DIR); \
58 ./configure --prefix=/usr \
59 );
60 endef
61
62 define Package/git/install
63 $(INSTALL_DIR) $(1)
64 $(RM) $(PKG_INSTALL_DIR)/usr/bin/git-cvsserver
65 $(CP) $(PKG_INSTALL_DIR)/* $(1)/
66 endef
67
68 $(eval $(call BuildPackage,git))