Commit 2cacff0d authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

contribs: add vorbis(enc)

parent a73694c6
...@@ -146,7 +146,7 @@ case "${OS}" in ...@@ -146,7 +146,7 @@ case "${OS}" in
add_make_enabled "HAVE_WINCE" add_make_enabled "HAVE_WINCE"
;; ;;
esac esac
add_make_enabled "BUILD_ENCODERS"
# #
# Results output # Results output
......
21acfd8bdb82a318c85a059e1de8b4d18c498a3985fe904e17e8592faad8989ba0ab4a124cba64311c1e76f78ae5e948c83684a4a418ef0ca7608f2fc010ea73 libvorbis-1.3.2.tar.xz
# libvorbis
VORBIS_VERSION := 1.3.2
VORBIS_URL := http://downloads.xiph.org/releases/vorbis/libvorbis-$(VORBIS_VERSION).tar.xz
#VORBIS_URL := $(CONTRIB_VIDEOLAN)/libvorbis-$(VORBIS_VERSION).tar.gz
ifndef HAVE_FPU
PKGS += vorbis
endif
ifdef BUILD_ENCODERS
PKGS += vorbisenc
endif
$(TARBALLS)/libvorbis-$(VORBIS_VERSION).tar.xz:
$(DOWNLOAD) $(VORBIS_URL)
.sum-vorbis: $(TARBALLS)/libvorbis-$(VORBIS_VERSION).tar.xz
$(CHECK_SHA512)
touch $@
libvorbis: $(TARBALLS)/libvorbis-$(VORBIS_VERSION).tar.xz .sum-vorbis
$(UNPACK_XZ)
mv $@-$(VORBIS_VERSION) $@
touch $@
.vorbis: libvorbis .ogg
cd $< && $(HOSTVARS) ./configure $(HOSTCONF) --disable-docs --disable-examples --disable-oggtest
cd $< && $(MAKE) install
touch $@
.sum-vorbisenc: .sum-vorbis
touch $@
.vorbisenc: .vorbis
touch $@
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment