diff options
author | Di Appoggio <diappoggio@gmail.com> | 2010-09-20 12:04:43 (GMT) |
---|---|---|
committer | Di Appoggio <diappoggio@gmail.com> | 2010-09-20 12:04:43 (GMT) |
commit | b20525341ff1866023ca97366f359d1a6f1dca1b (patch) | |
tree | 040435b3c00ad0e7498f5b441cd6aff2fb1abff0 /src/x264.mk | |
parent | 1890e67af42c1a1ce3ef14b8c46041c380bc8870 (diff) | |
download | mxe-b20525341ff1866023ca97366f359d1a6f1dca1b.zip mxe-b20525341ff1866023ca97366f359d1a6f1dca1b.tar.gz mxe-b20525341ff1866023ca97366f359d1a6f1dca1b.tar.bz2 |
new packages: faac, faad2, ffmpeg, lame, libvpx, opencore-amr, x264
Diffstat (limited to 'src/x264.mk')
-rw-r--r-- | src/x264.mk | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/x264.mk b/src/x264.mk new file mode 100644 index 0000000..a89ba2b --- /dev/null +++ b/src/x264.mk @@ -0,0 +1,29 @@ +# This file is part of mingw-cross-env. +# See doc/index.html for further information. + +# x264 +PKG := x264 +$(PKG)_IGNORE := +$(PKG)_VERSION := 20100714-2245 +$(PKG)_CHECKSUM := f24042f8de3aa27262a72637cf2fe06b1e968c9c +$(PKG)_SUBDIR := $(PKG)-snapshot-$($(PKG)_VERSION) +$(PKG)_FILE := $(PKG)-snapshot-$($(PKG)_VERSION).tar.bz2 +$(PKG)_WEBSITE := http://www.videolan.org/developers/x264.html +$(PKG)_URL := http://ftp.videolan.org/pub/videolan/$(PKG)/snapshots/$($(PKG)_FILE) +$(PKG)_DEPS := gcc + +define $(PKG)_UPDATE + wget -q -O- 'http://ftp.videolan.org/pub/videolan/x264/snapshots/' | \ + $(SED) -n 's,.*<a href="x264-\snapshot-\([0-9][^"]*\)\.tar.*,\1,p' | \ + head -1 +endef + +define $(PKG)_BUILD + cd '$(1)' && ./configure \ + --cross-prefix='$(TARGET)'- \ + --host='$(TARGET)' \ + --prefix='$(PREFIX)/$(TARGET)' \ + --disable-pthread + $(MAKE) -C '$(1)' -j '$(JOBS)' + $(MAKE) -C '$(1)' -j 1 install +endef |