Last active
January 21, 2016 04:25
-
-
Save dgershman/5fd5ae2c97c2d23c416a to your computer and use it in GitHub Desktop.
mod_vlc installation on Centos 6.4
This file contains hidden or 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
| #this maybe better, still testing | |
| # wget http://pkgrepo.linuxtech.net/el6/release/linuxtech.repo | |
| # mv linuxtech.repo /etc/yum.repos.d | |
| # yum -y install vlc vlc-devel | |
| yum -y install git pkgconfig pcsc-lite-devel | |
| #ragel | |
| cd /usr/local/src | |
| wget http://www.colm.net/files/ragel/ragel-6.9.tar.gz | |
| tar -xvf ragel-6.9.tar.gz | |
| cd /usr/local/src/ragel-6.9 | |
| ./configure && make && make install | |
| #update automake to 2.69 | |
| cd /usr/local/src | |
| wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz | |
| tar xvfvz autoconf-2.69.tar.gz | |
| cd /usr/local/src/autoconf-2.69 | |
| ./configure --prefix=/usr | |
| make && make install | |
| #update libtool to 2.4.6 | |
| cd /usr/local/src | |
| wget http://ftpmirror.gnu.org/libtool/libtool-2.4.6.tar.gz | |
| tar xvfvz libtool-2.4.6.tar.gz | |
| cd /usr/local/src/libtool-2.4.6 | |
| ./configure --prefix=/usr | |
| make && make install | |
| cd /usr/local/src | |
| git clone git://git.videolan.org/vlc.git | |
| cd /usr/local/src/vlc | |
| ./bootstrap | |
| cd /usr/local/src/vlc/contrib | |
| mkdir native | |
| cd /usr/local/src/vlc/contrib/native | |
| ../bootstrap | |
| cd /usr/local/src/vlc/contrib/native/arrib24 | |
| mkdir m4 | |
| cd .. | |
| make | |
| cd /usr/local/src/vlc/ | |
| ./configure --prefix=/usr/ --disable-vlc --disable-lua --disable-mad --disable-swscale --disable-postproc --disable-xcb --disable-alsa |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment