[packages] git: update to 1.7.10.4

git-svn-id: svn://svn.openwrt.org/openwrt/packages@32132 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
luka
2012-06-08 23:28:44 +00:00
parent 218b3a20b2
commit 6636e13f2a
2 changed files with 14 additions and 292 deletions

View File

@ -1,5 +1,5 @@
#
# Copyright (C) 2009-2011 OpenWrt.org
# Copyright (C) 2009-2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
@ -8,12 +8,12 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=git
PKG_VERSION:=1.7.5.2
PKG_RELEASE:=2
PKG_VERSION:=1.7.10.4
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=@KERNEL/software/scm/git
PKG_MD5SUM:=f79ab8fe79b35346b499f131cbf381a4
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://git-core.googlecode.com/files/
PKG_MD5SUM:=68319d593d051ef76c26e945bbd2d7ac
PKG_INSTALL:=1
PKG_BUILD_PARALLEL:=1
@ -24,10 +24,9 @@ define Package/git
SECTION:=net
CATEGORY:=Network
SUBMENU:=Version Control Systems
DEPENDS:=+libopenssl +libpthread
DEPENDS:=+libopenssl +libcurl +libpthread
TITLE:=The fast version control system
URL:=http://git-scm.com
MAINTAINER:=Luka Perkov <openwrt@lukaperkov.net>
endef
define Package/git/description
@ -38,19 +37,18 @@ endef
MAKE_FLAGS := \
CC="$(TARGET_CC)" \
LD="$(TARGET_CC)" \
CFLAGS="$(TARGET_CFLAGS) $(TARGET_CPPFLAGS)" \
CFLAGS="$(TARGET_CFLAGS)" \
CPPFLAGS="$(TARGET_CPPFLAGS)" \
LDFLAGS="$(TARGET_LDFLAGS)" \
NO_PERL="YesPlease" \
NO_EXPAT="YesPlease" \
NO_WISH="YesPlease" \
NO_MKSTEMPS="YesPlease" \
NO_GETTEXT="YesPlease" \
NO_IPV6="YesPlease" \
NO_ICONV="YesPlease" \
NO_NSEC="YesPlease" \
NO_CURL="YesPlease" \
NO_TCLTK="YesPlease" \
NO_MKSTEMPS="YesPlease" \
NO_PERL="YesPlease" \
NO_PYTHON="YesPlease" \
NO_TCLTK="YesPlease"
define Build/Configure
$(MAKE) -C $(PKG_BUILD_DIR) \
@ -63,8 +61,8 @@ endef
define Package/git/install
$(INSTALL_DIR) $(1)
$(RM) $(PKG_INSTALL_DIR)/usr/bin/git-cvsserver
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
ln -s /usr/bin/git $(1)/usr/libexec/git-core/git
endef
$(eval $(call BuildPackage,git))