Merge pull request 'Add user config and add sources file.' (#10) from Ohio2/aps:master into master

Reviewed-on: #10
This commit is contained in:
hippoz 2021-08-29 08:26:42 +01:00
commit bfe974b185

20
aps
View file

@ -5,7 +5,11 @@
# the package manager for Alnux #
#################################
if [ -f "/etc/al/config" ]; then
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
. /etc/al/config
else
temp_location="/var/tmp"
@ -58,6 +62,13 @@ 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"
@ -159,6 +170,12 @@ help(){
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'
}
main() {
if [ -f "${lock}" ]; then
@ -180,6 +197,7 @@ main() {
upgrade) upgrade "official" ;;
help) help ;;
version) version ;;
list) list ;;
*) die "[E] Invalid option ${1}, exiting..." ;;
esac
rm "${lock}"