-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
oops forgot the build script, ..cleaned docs
- Loading branch information
ncmprhnsbl
committed
Nov 19, 2017
1 parent
a09856b
commit 0c5f385
Showing
4 changed files
with
47 additions
and
83 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,11 +1,3 @@ | ||
|
||
update/correct docs | ||
identify/supply missing packages ..done | ||
check configs match ..eh? | ||
make it work ..done | ||
include 32bit ..done | ||
update/correct docs | ||
rebuild from/include sources ..closer | ||
make like https://github.com/brokenman/xfce.git..closer | ||
|
||
|
||
work out what todo next .. |
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
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,44 @@ | ||
#!/bin/bash | ||
|
||
## Build xfce desktop. | ||
## This script must be run from the root of the openbox dev folder | ||
## The following folders should exist | ||
|
||
## Enter the name of the folder that holds your openbox dev file | ||
basef=`pwd` | ||
|
||
## github | ||
## | | ||
## ---- DOC PKG32 PKG64 SRC TREE | ||
## | ||
## export64/32 | ||
## build | ||
|
||
ARCH=`uname -m` | ||
|
||
if [ "$ARCH" != "x86_64" ]; then | ||
ARCH=i486 | ||
SUFFIX=32 | ||
else | ||
SUFFIX=64 | ||
fi | ||
|
||
[ ! -d $basef/PKG${SUFFIX} ] && { echo "Run this script from root of openbox dev folder"; exit; } | ||
|
||
echo "Cleaning old build files" | ||
[ ! -d build ] && mkdir build || rm -rf build/* | ||
|
||
for a in `find $basef/PKG${SUFFIX} -type f | egrep "*.tgz|*.txz"`; do | ||
installpkg --terse -root build $a | ||
done | ||
|
||
for a in `find $basef/PKG${SUFFIX} -name "*.xzm"`; do | ||
xzm2dir $a build | ||
done | ||
|
||
cp -a $basef/TREE/* build | ||
cd build | ||
./launch_before_go_openbox.sh | ||
rm launch_before_go_openbox.sh | ||
cd - | ||
#dir2xzm build 003-openbox${SUFFIX}.xzm |