1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
README.source
--------------------------
Upstream twittering-mode project distributes by git.
If you want all source for Twittering-mode, hit the following command.
$ git clone git://github.com/hayamiz/twittering-mode.git
The files in the win-curl directory are not required and I do not know
how the curl.exe file was built from source. In addition, the files
related to git are not required. So the win-curl directory and the
files related to git are not included in the orig.tar.gz file.
The orig.tar.gz file created by the following command.
$ cat <<EOF > gen-twittering-mode-orig.sh
> #!/bin/bash
> if [ -d twittering-mode ]
> then
> cd twittering-mode
> git pull
> cd ..
> else
> git clone --depth 1 git://github.com/hayamiz/twittering-mode.git
> fi
> cd twittering-mode
> export VERSION=`cat VERSION`
> export CDATE=`git log --pretty='%ad' --date=short -1 | sed -e 's/-//g'`
> cd ..
> export FILE="twittering-mode_${VERSION}+git${CDATE}.orig.tar.gz"
> if [ ! -f ${FILE} ]
> then
> tar cfz ${FILE} \
> --exclude twittering-mode/.git \
> --exclude twittering-mode/.gitattributes \
> --exclude twittering-mode/.gitignore \
> --exclude twittering-mode/win-curl \
> twittering-mode
> else
> echo "Already exist"
> fi
> EOF
$ chmod +x gen-twittering-mode-orig.sh
$ ./gen-twittering-mode-orig.sh
-- Takaya Yamashita <takaya@debian.or.jp>, Thu, 31 Mar 2011 20:00:05 +0900
|