Compare commits

..

No commits in common. "bfe974b185e16fb786903b48fca332cff8bdacc2" and "e45205cb2fbe17b07f9f24932065cc886669bd5d" have entirely different histories.

22
aps
View file

@ -5,11 +5,7 @@
# the package manager for Alnux #
#################################
if [ -f "$XDG_CONFIG_HOME/al/config" ]; then
. $XDG_CONFIG_HOME/al/config
elif [ -f "$HOME/.config/al/config"]; then
. $HOME/.config/al/config
elif [ -f "/etc/al/config" ]; then
if [ -f "/etc/al/config" ]; then
. /etc/al/config
else
temp_location="/var/tmp"
@ -62,13 +58,6 @@ install_local_package() {
pkg_config_ver="0"
pkg_config_makedepends=""
pkg_config_depends=""
# Download sources.
pkg_config_sources="$(cat sources | sed -n 1)"
pkg_config_sources_to="$(cat sources | sed -n 1)"
pkg_config_sources_to="$(echo ${pkg_config_sources_to} | sed s|.*/||)"
curl -# ${pkg_config_sources} -o ${pkg_config_sources_to}
tar -xf ${pkg_config_sources_to} ${pkg_name}
cd ${pkg_name}
# Install package
mkdir -p "${pkg_path}/payload"
. "${pkg_path}/package"
@ -169,13 +158,7 @@ help(){
echo "sync - Synchronizes from package repository."
echo "install - Installs from local package information file and build file."
echo "upgrade - Upgrades from package repository."
echo "remove - Removes a package from /var/aps/installed and it's install files (payloadfiles)."
echo "list - Lists currently installed packages."
echo "help - Display this message."
echo "version - Display the version."
}
list(){
ls ${installed_pkg_database} | sed 's/^README.md//g'
echo "remove - Removes a package from /var/aps/installed and it's install files (payloadfiles)."
}
main() {
if [ -f "${lock}" ]; then
@ -197,7 +180,6 @@ main() {
upgrade) upgrade "official" ;;
help) help ;;
version) version ;;
list) list ;;
*) die "[E] Invalid option ${1}, exiting..." ;;
esac
rm "${lock}"