1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-09-30 03:30:44 +03:00

mplayer: correctly checkout ffmpeg from git

This commit is contained in:
kyak 2011-04-30 13:06:19 +04:00
parent d895199576
commit d69ac0f856

View File

@ -7,10 +7,10 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
PKG_NAME:=MPlayer PKG_NAME:=MPlayer
PKG_REV:=33333 PKG_REV:=33341
FFMPEG_REV:=d84f191d37b8123203dff250531a4b4c0d5f587a FFMPEG_REV:=97dc86b793efb9c6ac604cdfff4027fe27efa12c
PKG_VERSION:=r$(PKG_REV) PKG_VERSION:=r$(PKG_REV)
PKG_RELEASE:=3 PKG_RELEASE:=1
PKG_SOURCE=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE=$(PKG_NAME)-$(PKG_VERSION).tar.gz
FFMPEG_SOURCE_URL:=git://git.videolan.org/ffmpeg.git FFMPEG_SOURCE_URL:=git://git.videolan.org/ffmpeg.git
@ -32,7 +32,7 @@ define DownloadMethod/svn_plus_ffmpeg_git
( svn help export | grep -q trust-server-cert && \ ( svn help export | grep -q trust-server-cert && \
svn export --non-interactive --trust-server-cert -r$(VERSION) $(URL) $(SUBDIR) || \ svn export --non-interactive --trust-server-cert -r$(VERSION) $(URL) $(SUBDIR) || \
svn export --non-interactive -r$(VERSION) $(URL) $(SUBDIR) ) && \ svn export --non-interactive -r$(VERSION) $(URL) $(SUBDIR) ) && \
git clone --depth 1 $(FFMPEG_SOURCE_URL) $(SUBDIR)/ffmpeg && \ git clone $(FFMPEG_SOURCE_URL) $(SUBDIR)/ffmpeg && \
(cd $(SUBDIR)/ffmpeg && git checkout $(FFMPEG_REV)) && \ (cd $(SUBDIR)/ffmpeg && git checkout $(FFMPEG_REV)) && \
echo "Packing checkout..." && \ echo "Packing checkout..." && \
rm -rf $(SUBDIR)/ffmpeg/.git && \ rm -rf $(SUBDIR)/ffmpeg/.git && \