Skip to content

Commit

Permalink
1.4
Browse files Browse the repository at this point in the history
Added:

Mark one package as a dependency, explicitly installed or toggle ignored status.
Now checks for new repositories added in the pacman configuration file.
Handles mirrorlist updates and .pacnew and .pacsave files

Improvements:

Now should work with system languages other than English (thanks to ringo32)
Install AUR package attempts to install AUR dependencies.
Moved the temporary directory location to handle installation of large packages.
Keyboard traversal now improved for main window.
  • Loading branch information
AndyM48 authored Oct 3, 2019
1 parent 02e47bc commit 5c0b522
Show file tree
Hide file tree
Showing 2 changed files with 5,822 additions and 1,355 deletions.
53 changes: 1 addition & 52 deletions vpacman
Original file line number Diff line number Diff line change
@@ -1,54 +1,3 @@
#!/bin/sh

help () {

echo "
Usage:
vpacman [OPTIONS]
Run vpacman - a Graphical front end for pacman and the AUR.
Options:
-d --debug run in debug mode. Output is saved to a file \" vpacman.debug\" in the users home folder.
-h --help show this help. For extended help run vpacman and select Help > Help from the menu bar.
"
}

while [ "X$1" != "X" ]; do
case "$1" in
-d|--debug)
DVAR="debug"
shift
;;
-h|--help)
DHELP=true
shift
;;
-dh|-hd)
help
DVAR="debug"
DHELP=true
shift
;;
*)
echo "Unknown option $1"
help
exit
;;
esac
done

if [ $DHELP ]; then
help
if [ "$DVAR" ]; then
echo "Press <Enter> to run vpacman now: "
read -n 1 -s ans
if [ "$ans" ]
then
exit
fi
else
exit
fi
fi
"/usr/share/vpacman/vpacman.tcl" $DVAR &
/usr/share/vpacman/vpacman.tcl $@ &
Loading

0 comments on commit 5c0b522

Please sign in to comment.