Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
chromebrew
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Guillaume Hervier
chromebrew
Commits
b7b1dbbd
Commit
b7b1dbbd
authored
Dec 18, 2018
by
Ed Reel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix crew and install.sh
parent
e194c3ce
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
3 deletions
+15
-3
crew
crew
+10
-2
install.sh
install.sh
+5
-1
No files found.
crew
View file @
b7b1dbbd
...
...
@@ -584,9 +584,17 @@ def install_package (pkgdir)
strip_find_files
"find . -type f ! -iname '*\.bz2' ! -iname '*\.gz' ! -iname '*\.lha' ! -iname '*\.lz' ! -iname '*\.rar' ! -iname '*\.tar' ! -iname '*\.tgz' ! -iname '*\.xz' ! -iname '*\.zip' -perm /111 -print | sed -e '/lib.*\.a$/d' -e '/lib.*\.so/d'"
if
@
opt_verbose
then
system
"tar cvf - ./usr ./home | (cd /; tar xp --keep-directory-symlink -f -)"
if
[
-
d
"#{pkgdir}/home"
];
then
system
"tar cvf - ./usr/* ./home/* | (cd /; tar xp --keep-directory-symlink -f -)"
else
system
"tar cvf - ./usr/* | (cd /; tar xp --keep-directory-symlink -f -)"
fi
else
system
"tar cf - ./usr ./home | (cd /; tar xp --keep-directory-symlink -f -)"
if
[
-
d
"#{pkgdir}/home"
];
then
system
"tar cf - ./usr/* ./home/* | (cd /; tar xp --keep-directory-symlink -f -)"
else
system
"tar cf - ./usr/* | (cd /; tar xp --keep-directory-symlink -f -)"
fi
end
end
end
...
...
install.sh
View file @
b7b1dbbd
...
...
@@ -111,7 +111,11 @@ function extract_install () {
rm
-rf
./usr ./home
tar
-xf
$2
echo
"Installing
$1
(this may take a while)..."
tar
cf - ./usr ./home |
(
cd
/
;
tar
xp
--keep-directory-symlink
-f
-
)
if
[
-d
"
${
CREW_BREW_DIR
}
/home"
]
;
then
tar
cf - ./usr/
*
./home/
*
|
(
cd
/
;
tar
xp
--keep-directory-symlink
-f
-
)
else
tar
cf - ./usr/
*
|
(
cd
/
;
tar
xp
--keep-directory-symlink
-f
-
)
fi
mv
./dlist
$CREW_CONFIG_PATH
/meta/
$1
.directorylist
mv
./filelist
$CREW_CONFIG_PATH
/meta/
$1
.filelist
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment