1 Star 0 Fork 0

pwl1987/ffmpegtoolkit

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ac_libogg.sh 574 Bytes
一键复制 编辑 原始数据 按行查看 历史
ntkuba 提交于 2018-02-03 04:48 . update to Latest versions
#!/bin/bash
function _install_libogg() {
clear
_file="libogg-1.3.3.tar.gz"
_package="Libogg"
echo -e $RED"Installation of $_package ....... started"$RESET
cd $SOURCE_DIR/
if [ -f "$_file" ]
then
echo "$_file found, Skip Downloads"
else
echo "$_file not found, Try Downloading......"
wget https://ftp.osuosl.org/pub/xiph/releases/ogg/$_file
fi
tar -xvzf $_file
cd libogg-1.3.3/
./configure --prefix=$INSTALL_DIR
make -j $cpu
make install
echo -e $RED"Installation of $_package ....... Completed"$RESET
cd $SOURCE_DIR/
}
_install_libogg
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/pwl1987/ffmpegtoolkit.git
[email protected]:pwl1987/ffmpegtoolkit.git
pwl1987
ffmpegtoolkit
ffmpegtoolkit
master

搜索帮助