首页 > 开发 > 综合 > 正文

Gnome2编译过程及脚本

2024-07-21 02:36:05
字体:
来源:转载
供稿:网友

  此脚本用来编译gnome2final的..包括一个脚本(g2com.sh)和一个编译顺序的数据文件(gnome2-order)
  
  gnome2final大家在FTP.gnome.org下载.
  ftp.gnome.org
  Release Notes
  
  1.下载时选tar.gz或tar.bz2,下载到一个目录下,然后解压.可用以下脚本.
  2.解压
  解tar.gz
  #!/bin/sh
  for i in ./*.gz ; do
  tar zxvf $i
  done
  
  解tar.bz2
  #!/bin/sh
  for i in ./*.bz2 ; do
  bzip2 -d $i tar xvf -
  done
  
  3.解压后在使用编译脚本:
  先做好gnome2-order文本文件.
  把这个脚本拷贝到刚才解压的目录中.
  执行
  
  说明:
  (1)g2com.sh流程:
  先建了两个文件用来记录configure和make的信息,以便查错.
  然打开一个文件描述府,读取一行作为目录,判定目录存在,进入目录,配置编译..否则退出.
  最后关闭文件描述府.结束
  (2)gnome2-order中的次序是gnome.org>>relase notes>>install order中提取的数据.
  
  直接下载:g2com.shgnome2-order
  编译脚本 g2com.sh
  #################################################
  
  #!/bin/sh
  #g2com.sh
  
  #create the tow file to record config/make status
  toUCh conf.status
  touch make.status
  #open "gnome2-order" to read for compily
  exec 4> ../conf.status
  make >> ../make.status
  make install
  cd ../
  else
  echo "The Dectionary $i is not exsit";
  exit
  fi
  #counter
  sum=$[$sum+1]
  
  done
  #close file_handle
  exec 0

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表