本文根据 http://wiki.videolan.org/UnixCompile 编写
第一步: 安装Git 相关的程序包:
% sudo apt-get install git libtool build-essential pkg-config autoconf
第二步:git上获取VLC代码:(之前要 配置SSH通信密钥)
% git clone git://git.videolan.org/vlc.git % cd vlc % ./bootstrap
videolan 官网获取源码
% wget ftp://ftp.videolan.org/pub/videolan/vlc/2.0.4/vlc-2.0.4.tar.xz % tar xvJf vlc-2.0.4.tar.xz % cd vlc-2.0.4
第三步:安装VCL依赖包
$ sudo apt-get build-dep vlc
第四步:编译
% ./configure
% make
第五步:运行
# ./vlc
第六步:安装:
# make install
第七步:卸载:
# make uninstall
# make clean
标签:git,tar,VLC,videolan,Git,linux,2.0,vlc,make From: https://blog.51cto.com/u_15917617/5953269