4 Star 13 Fork 3

Gitee 极速下载/vala

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://gitlab.gnome.org/GNOME/vala
克隆/下载
autogen.sh 693 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/sh
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
ORIGDIR=`pwd`
cd $srcdir
test -z "$VALAC" && VALAC=valac
if ! $VALAC --version | sed -e 's/^Vala \([0-9]\+\.[0-9]\+\).*$/\1/' | grep -vq '^0\.\([0-9]\|1[0-5]\)$'
then
echo "**Error**: You must have valac >= 0.16.1 installed"
echo " to build vala. Download the appropriate package"
echo " from your distribution or get the source tarball at"
echo " https://download.gnome.org/sources/vala/"
exit 1
fi
# Automake requires that ChangeLog exist.
touch ChangeLog
mkdir -p m4
rm -f .version
autoreconf -v --install || exit 1
cd $ORIGDIR || exit $?
if test -z "$NOCONFIGURE"; then
$srcdir/configure "$@"
fi
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Vala
1
https://gitee.com/mirrors/vala.git
[email protected]:mirrors/vala.git
mirrors
vala
vala
main

搜索帮助