forked from teejee2008/timeshift
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fc6be21
commit 74a82b8
Showing
17 changed files
with
87 additions
and
1,557 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
#!/bin/bash | ||
|
||
backup=`pwd` | ||
DIR="$( cd "$( dirname "$0" )" && pwd )" | ||
cd "$DIR" | ||
|
||
rm -rf ../builds | ||
bzr builddeb --native --build-dir ../builds/temp --result-dir ../builds | ||
ls -l ../builds | ||
|
||
cd "$backup" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
|
||
backup=`pwd` | ||
DIR="$( cd "$( dirname "$0" )" && pwd )" | ||
cd "$DIR" | ||
|
||
sh ./build-deb.sh | ||
sudo gdebi --non-interactive ../builds/timeshift*.deb | ||
|
||
cd "$backup" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#!/bin/bash | ||
|
||
backup=`pwd` | ||
DIR="$( cd "$( dirname "$0" )" && pwd )" | ||
cd $DIR | ||
|
||
sh ./build-source.sh | ||
cd ./installer | ||
|
||
tgz="/home/teejee/projects/pbuilder/" | ||
dsc="/home/teejee/projects/builds/timeshift*.dsc" | ||
|
||
chmod u+x ./install.sh | ||
|
||
# build installer ------------------------------------- | ||
|
||
for arch in i386 amd64 | ||
do | ||
|
||
rm -rf ${arch} | ||
mkdir -p ${arch} | ||
|
||
sudo pbuilder --build --buildresult ${arch} --basetgz "${tgz}base-${arch}.tgz" ${dsc} | ||
|
||
dpkg-deb -x ${arch}/timeshift*.deb ${arch}/extracted | ||
|
||
cp -p --no-preserve=ownership -t ${arch}/extracted ./install.sh | ||
|
||
makeself ${arch}/extracted ./timeshift-latest-${arch}.run "TimeShift (${arch})" ./install.sh | ||
|
||
cp -p --no-preserve=ownership -t /home/teejee/Dropbox/Public/linux ./timeshift-latest-${arch}.run | ||
|
||
done | ||
|
||
cd "$backup" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
#!/bin/bash | ||
|
||
backup=`pwd` | ||
DIR="$( cd "$( dirname "$0" )" && pwd )" | ||
cd "$DIR" | ||
|
||
rm -rf ../builds | ||
bzr builddeb --source --native --build-dir ../builds/temp --result-dir ../builds | ||
ls -l ../builds | ||
|
||
cd "$backup" |
File renamed without changes.
File renamed without changes.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.