blob: 9a53134cb95a1b3e78ba6897c793ac0b9494fc4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
$(eval $(call import.MODULE.defs,MPEG2DEC,mpeg2dec))
$(eval $(call import.CONTRIB.defs,MPEG2DEC))
MPEG2DEC.FETCH.url = http://download.handbrake.fr/handbrake/contrib/mpeg2dec-0.5.1.tar.gz
MPEG2DEC.EXTRACT.tarbase = mpeg2dec
ifeq (darwin,$(BUILD.system))
# darwin configure patch needs autoreconf
MPEG2DEC.CONFIGURE.bootstrap = rm -fr aclocal.m4 autom4te.cache; autoreconf -fiv;
endif
MPEG2DEC.CONFIGURE.extra = --disable-sdl --without-x
|