Open kiviktnm opened 3 months ago
Currently, UserPackages must specify their dependencies, version etc. in the decman source.
UserPackage( pkgname="decman-git", version="0.3.1", dependencies=[ "python", "python-requests", "devtools", "systemd", "pacman", "git", "less", ], make_dependencies=[ "python-setuptools", "python-build", "python-installer", "python-wheel", ], git_url="https://github.com/kiviktnm/decman-pkgbuild.git", )
These properties could be parsed directy from the PKGBUILD.
The goal would be to have UserPackages that only need a git_url to a PKGBUILD repository.
git_url
UserPackage( git_url="https://github.com/kiviktnm/decman-pkgbuild.git", )
Currently, UserPackages must specify their dependencies, version etc. in the decman source.
These properties could be parsed directy from the PKGBUILD.
The goal would be to have UserPackages that only need a
git_url
to a PKGBUILD repository.