mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-22 06:25:56 +02:00
centerim5: fix git url; checkout mob branch
This commit is contained in:
parent
681b260b4e
commit
f741694035
@ -7,11 +7,11 @@ include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=centerim5
|
||||
PKG_VERSION:=alpha
|
||||
PKG_REV:=20480da1629c7071440ba0aac5dcec9f5f82f7b6
|
||||
PKG_REV:=3f20c56b159854426919d0b06989ca0d813e0659
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_REV).tar.gz
|
||||
PKG_SOURCE_URL:=git+ssh://mob@repo.or.cz/srv/git/centerim5.git
|
||||
PKG_SOURCE_URL:=git://repo.or.cz/centerim5.git
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_SOURCE_VERSION:=$(PKG_REV)
|
||||
@ -19,6 +19,23 @@ PKG_SOURCE_VERSION:=$(PKG_REV)
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
include $(INCLUDE_DIR)/nls.mk
|
||||
|
||||
define DownloadMethod/git
|
||||
$(call wrap_mirror, \
|
||||
echo "Checking out files from the git repository..."; \
|
||||
mkdir -p $(TMP_DIR)/dl && \
|
||||
cd $(TMP_DIR)/dl && \
|
||||
rm -rf $(SUBDIR) && \
|
||||
[ \! -d $(SUBDIR) ] && \
|
||||
git clone --branch mob $(URL) $(SUBDIR) && \
|
||||
(cd $(SUBDIR) && git checkout $(VERSION)) && \
|
||||
echo "Packing checkout..." && \
|
||||
rm -rf $(SUBDIR)/.git && \
|
||||
$(call dl_pack,$(TMP_DIR)/dl/$(FILE),$(SUBDIR)) && \
|
||||
mv $(TMP_DIR)/dl/$(FILE) $(DL_DIR)/ && \
|
||||
rm -rf $(SUBDIR); \
|
||||
)
|
||||
endef
|
||||
|
||||
define Package/centerim5
|
||||
SECTION:=net
|
||||
CATEGORY:=Network
|
||||
|
Loading…
Reference in New Issue
Block a user