[packages] git: update to 1.9.1
[openwrt/svn-archive/archive.git] / net / git / Makefile
1 #
2 # Copyright (C) 2009-2014 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.9.1
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
15 PKG_SOURCE_URL:=@KERNEL/software/scm/git/
16 PKG_MD5SUM:=d65ca55041898c226e532425fc673035
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 +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_CURL="YesPlease" \
44 NO_EXPAT="YesPlease" \
45 NO_MKSTEMPS="YesPlease" \
46 NO_GETTEXT="YesPlease" \
47 NO_UNIX_SOCKETS="YesPlease" \
48 NO_IPV6="YesPlease" \
49 NO_ICONV="YesPlease" \
50 NO_NSEC="YesPlease" \
51 NO_PERL="YesPlease" \
52 NO_PYTHON="YesPlease" \
53 NO_TCLTK="YesPlease"
54
55 define Build/Configure
56 $(MAKE) -C $(PKG_BUILD_DIR) \
57 configure
58
59 ( cd $(PKG_BUILD_DIR); \
60 ./configure --prefix=/usr \
61 );
62 endef
63
64 define Package/git/install
65 $(INSTALL_DIR) $(1)
66 $(RM) $(PKG_INSTALL_DIR)/usr/bin/git-cvsserver
67 $(CP) $(PKG_INSTALL_DIR)/* $(1)/
68 endef
69
70 $(eval $(call BuildPackage,git))