aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authortheuni <theuni@svn>2010-08-03 03:45:59 +0000
committertheuni <theuni@svn>2010-08-03 03:45:59 +0000
commit0dfbe44befc79fef86a1a08636b7a1ca181f5ec6 (patch)
tree8dca5cdbed7741e038c45bd9a32993bd240dfad6 /lib
parentfd093a6093e993d470fd5ab1803302a3305e6eb3 (diff)
cleanup: remove leftover libvpx bits
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@32450 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'lib')
-rw-r--r--lib/libvpx/Makefile44
1 files changed, 0 insertions, 44 deletions
diff --git a/lib/libvpx/Makefile b/lib/libvpx/Makefile
deleted file mode 100644
index 0f6ffd4746..0000000000
--- a/lib/libvpx/Makefile
+++ /dev/null
@@ -1,44 +0,0 @@
-#
-# libvpx build script.
-#
-# A quick and dirty Makefile to download and build libvpx
-#
-# Darwin: libvpx is built as an static lib for linkage with FFmpeg.
-# x86-darwin8-gcc is targeted so we can run on the AppleTV.
-# prefix is /opt/local so XBMC's build system will pick it up.
-#
-# Usage:
-# make
-
-LIBVPX_VERS= 0.9.1
-LIBVPX_SRC = libvpx-$(LIBVPX_VERS)
-LIBVPX_LIB = $(LIBVPX_SRC)/libvpx.a
-
-# get OS type from shell
-OSTYPE = $(shell uname)
-ifeq ($(OSTYPE),Darwin)
-PREFIX = --prefix=/opt/local
-TARGET = --target=x86-darwin8-gcc
-DOWNLOAD_SRC = curl --output $(LIBVPX_SRC).tar.bz2 http://webm.googlecode.com/files/$(LIBVPX_SRC).tar.bz2
-else
-DOWNLOAD_SRC = wget http://webm.googlecode.com/files/$(LIBVPX_SRC).tar.bz2
-endif
-
-all:: $(LIBVPX_LIB)
-
-$(LIBVPX_LIB): $(LIBVPX_SRC)/Makefile
- make -C $(LIBVPX_SRC)
-
-$(LIBVPX_SRC)/Makefile:
- $(DOWNLOAD_SRC)
- tar -xjf $(LIBVPX_SRC).tar.bz2
- cd $(LIBVPX_SRC); ./configure $(PREFIX) $(TARGET) --disable-examples --enable-vp8
-
-install:
- make -C $(LIBVPX_SRC) install
-clean:
- make -C $(LIBVPX_SRC) clean
-
-distclean::
- rm $(LIBVPX_SRC).tar.bz2
- rm -rf $(LIBVPX_SRC)