Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

syncro #172

Merged
merged 7 commits into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added packagemanager/dep/shc-4.0.3.tar.gz
Binary file not shown.
9 changes: 9 additions & 0 deletions testing/packagemanagers/install/cydramanager_deps.githubonly
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Voici la liste des dépendances du gestionnaire de paquets ainsi que leurs guide d'installation:

WGET: https://linuxfromscratch.org/blfs/view/svn/basicnet/wget.html
SHC : |
| Téléchargez l'archive: https://raw.githubusercontent.com/acth2/CydraProject/main/packagemanager/dep/shc-4.0.3.tar.gz
| Exécutez cette suite de commandes:
./configure
make
make install
4 changes: 3 additions & 1 deletion testing/packagemanagers/software/cydramanager
Original file line number Diff line number Diff line change
Expand Up @@ -837,14 +837,16 @@ elif [[ "$1" == "update" ]]; then
pkgcounter=$((pkgcounter + 1))

for checkpkg in "${lfspackages[@]}"; do
skip=false
if [[ "${updatepkg}" == *"${checkpkg}"* ]]; then
skip=true
break
fi

if $skip; then
continue
fi
fi

tar xf "${updatepkg}" -C / --exclude='/usr/lib/systemd/*' --exclude='/lib/systemd/*' --exclude='/etc/systemd/*' > /dev/null 2>&1
done
done
Expand Down