diff options
| author | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-03-17 22:19:43 +0000 |
|---|---|---|
| committer | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-03-17 22:19:43 +0000 |
| commit | 42f5cf229efa2b20c642c7c0d7a2f3cd98b9a890 (patch) | |
| tree | 7eb6d3b99cdff9ae13df36af2c27cc5137365fae /build.sh | |
| parent | 437da38a26548714e6e1640722148f0f9f601ccb (diff) | |
- dopisane scripty
git-svn-id: http://opensvn.csie.org/tuxanci_ng@25 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
Diffstat (limited to 'build.sh')
| -rwxr-xr-x | build.sh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..645729d --- /dev/null +++ b/build.sh @@ -0,0 +1,27 @@ +#!/bin/bash + +rm -rf deb myusr tuxanci-ng_svn*_i386.deb +rm -rf tuxanci_ng-i386-bin tuxanci_ng-i386-bin tuxanci_ng-i386-bin.tar.bz2 +rm -rf tuxanci_ng tuxanci_ng.tar tuxanci_ng.tar.bz2 + +make clean +mv current_config.h config.h +make +mv config.h current_config.h +./tarballbin-build.sh + +make clean +./tarball-build.sh + +make clean +mv path_config.h config.h +make + +rm -rf myusr +mkdir myusr +mkdir myusr/bin +mkdir myusr/share + +make install DISTDIR=./myusr/ +mv config.h path_config.h +./deb-build.sh |