Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
bee-files/mplayer.be0
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
64 lines (50 sloc)
1.63 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env beesh | |
# BEE_VERSION mplayer-1.4-1 | |
# http://www.mplayerhq.hu/MPlayer/releases/MPlayer-1.4.tar.gz | |
# almost dead: SRCURL[0]="https://www.mplayerhq.hu/MPlayer/releases/MPlayer-${PKGVERSION}.tar.xz" | |
SRCURL[0]="https://beehive.molgen.mpg.de/234cf7048bd2cc7410f4d80ac51752fd/MPlayer-1.4.tar.gz" | |
# PATCHURL+=() | |
# EXCLUDE+=() | |
# build_in_sourcedir | |
# sourcesubdir_append src | |
# BEE_BUILDTYPE=autotools | |
#mee_extract() { | |
# bee_extract "${@}" | |
#} | |
#mee_patch() { | |
# bee_patch "${@}" | |
#} | |
mee_configure() { | |
CFLAGS='-Wno-deprecated-declarations' \ | |
${S}/configure \ | |
--prefix=${PREFIX} \ | |
--bindir=${BINDIR} \ | |
--libdir=${LIBDIR} \ | |
--datadir=${DATAROOTDIR} \ | |
--mandir=${MANDIR} \ | |
--confdir=/etc/mplayer \ | |
--disable-arts \ | |
--disable-cdparanoia \ | |
--disable-esd \ | |
--disable-gui \ | |
--disable-libdv \ | |
--disable-liblzo \ | |
--disable-mga \ | |
--disable-musepack \ | |
--disable-openal \ | |
--disable-smb \ | |
--disable-speex \ | |
--enable-dynamic-plugins \ | |
--enable-menu \ | |
--enable-radio \ | |
--enable-radio-capture \ | |
--enable-runtime-cpudetection \ | |
--enable-xvmc | |
} | |
mee_build() { | |
start_cmd make | |
} | |
mee_install() { | |
start_cmd make install DESTDIR="${D}" | |
start_cmd install -m644 etc/codecs.conf ${D}/etc/mplayer | |
} |