| 12345678910111213141516171819 |
- #!/bin/sh
- [ ! -e distro/dev-tools/scripts/make-tarball ] && exec echo Please execute '"[1m[32mdistro/dev-tools/scripts/make-tarball[0m"' under hime directory, thanks.
- XZ_OPT=${XZ_OPT-"-5e"}
- VER_1=`head -n 1 ChangeLog`
- # Remove space, tab, BOM
- VER_2=`sed -e 's/ //g' -e 's/ //g' -e 's/\t//g' -e 's/\xef\xbb\xbf//g' ChangeLog | grep -v ^$ | head -n 1`
- [ "$VER_1" != "$VER_2" ] && exec echo [1m[31mWarning! Version number in ChangeLog has some problem, please fix it![0m
- echo -n "ChangeLog: "
- head -n 1 ChangeLog
- GIT_DIR_NAME="${PWD##*/}"
- TAR_NAME=hime-`head -n 1 ChangeLog`
- cd ..
- [ -e "$TAR_NAME" ] && exec echo "$TAR_NAME" exist. exit.
- [ -e "$TAR_NAME".tar.xz ] && exec echo "$TAR_NAME".tar.xz exist. exit.
- [ -e "$TAR_NAME".dfsg.orig.tar.xz ] && exec echo "$TAR_NAME".dfsg.orig.tar.xz exist. exit.
- cp -r $GIT_DIR_NAME $TAR_NAME
- tar --owner=0 --group=0 -Jcf "$TAR_NAME".tar.xz $TAR_NAME --exclude=.gitignore --exclude=.git
- tar --owner=0 --group=0 -Jcf "$TAR_NAME".dfsg.orig.tar.xz $TAR_NAME --exclude=.gitignore --exclude=.git --exclude=dayi3.cin
- ls -ald "$TAR_NAME".tar.xz "$TAR_NAME".dfsg.orig.tar.xz
|