Opkg is not limited to using packages from files; it is also capable of using apt-get style repositories, vastly simplifying the job of fetching dependencies and updating packages. I already have a repository set up, and it could be added as such
echo "src/gz inportb-android-froyo http://repo.inportb.com/android/froyo" > /cache/etc/opkg/inportb.conf
After doing that, we could refresh the package list
opkg update
Installing a package then becomes as easy as
opkg install name-of-package
And we could keep all our packages up-to-date using
opkg update; opkg upgrade
It’s also quite simple to set up a repository for distributing packages.
