소스관리 툴

yonghyu의 이미지

소스 코드를 /srcman 디렉토리에 모아 놓고 빌드, 설치 등을 할 수 있는 툴입니다.

*사용할 때에는 반드시 mkdir /srcman 디렉토리를 만드셔야 합니다.

*아래의 코드는 /sbin 에 srcman 이라는 이름으로 저장하세요.

--------------------------스크립트--------------------------------

#!/bin/bash

BUILD='make'
FILE=''
RMOBJ='N'

case "$1" in
add)
if !(test -e /srcman/); then
echo "ERROR: No file."
exit 0;
else
FILE=$PWD'/'$2
cd /srcman/
if test -e $FILE; then
echo "Unpackaging..."
tar xzvf $FILE
else
if test -e $2; then
echo "Unpackaging..."
tar xzvf $2
else
echo "ERROR: No file."
exit 0;
fi
fi
fi
echo "finished."
;;
install)
if !(test -e /srcman/$2); then
echo "ERROR: No file."
exit 0;
else
cd /srcman/$2
if !(test -e ".configure"); then
echo "running configure..."
./configure | cat > .configure
fi
if test -e "Makefile"; then
BUILD='make'
else
if test -e "Jamfile"; then
BUILD='jam'
else
echo "ERROR: Unsupport build tool."
exit 0;
fi
fi
if !(test -e ".build"); then
echo "building..."
cat .configure | $BUILD | cat > .build
fi
cat "installing..."
cat .build | $BUILD | cat > install.log
cat install.log
fi
echo "finished."
;;
uninstall)
if !(test -e /srcman/$2); then
echo "ERROR: No file."
exit 0;
else
cd /srcman/$2
if test -e "Makefile"; then
BUILD='make'
else
if test -e "Jamfile"; then
BUILD='jam'
else
echo "ERROR: Unsupport build tool."
exit 0;
fi
fi
$BUILD uninstall
echo "Do you want remove object files? (Y/N default: N)"
read RMOBJ
if [ "$RMOBJ" = "y" -o "$RMOBJ" = "Y" ]; then
$BUILD clean
rm -rf .configure
rm -rf .build
rm -rf install.log
echo "remove successful."
fi
fi
echo "finished."
;;
rebuild)
if !(test -e /srcman/$2); then
echo "ERROR: No file."
exit 0;
else
cd /srcman/$2
echo "running configure..."
./configure | cat > .configure
if test -e "Makefile"; then
BUILD='make'
else
if test -e "Jamfile"; then
BUILD='jam'
else
echo "ERROR: Unsupport build tool."
exit 0;
fi
fi
echo "cleaning..."
$BUILD clean
echo "building..."
cat .configure | $BUILD | cat > .build
echo "installing..."
cat .build | $BUILD install | cat > install.log
cat install.log
fi
echo "finished."
;;
remove)
if !(test -e /srcman/); then
echo "ERROR: No file."
exit 0;
else
cd /srcman/
if [ "$2" = "" ]; then
echo "ERROR: No source to remove."
exit 0;
else
rm -rf /srcman/$2*
fi
fi
echo "finished."
;;
list)
if !(test -e /srcman/); then
echo "ERROR: No file."
exit 0;
else
cd /srcman/
ls -l | grep d | more
fi
;;
*)
echo "Usage: srcman {add|remove|install|uninstall|rebuild|list filename}"
exit 1
;;
esac
exit 0;

yonghyu의 이미지

오류 또는 개선점 있으면 댓글 달아주세요.
-----------------------------절 취 선-----------------------------------
홈페이지: yonghyu.dyndns.org
B.Y.H

-----------------------------절 취 선-----------------------------------

따라하지 마세요.

홈페이지: yonghyu.dyndns.org
B.Y.H

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.