summaryrefslogtreecommitdiff
path: root/Ports/README.md
AgeCommit message (Collapse)Author
2022-05-25Ports: Allow selecting multiple `config_{sub,guess}_path`sTim Schumacher
Some ports may have more than one `config.sub` that is in use (vendored dependencies, etc.). Instead of fiddling about with space-delimited strings, let's just make that setting into an array right away.
2022-03-11Meta: Update hashes in Port's READMETobias Christiansen
Only 'sha256' or 'sig' are allowed in the 'auth_type' field in order for the linter to pass. Reflect that into the README and give a description on what to do to create a hash. Also expand the examples to include a SHA256 hash.
2022-01-27Ports: Explain some new patch script options and features in the READMEAli Mohammad Pur
This explains: - `package.sh dev [--no-depends]` - `use_fresh_config_sub` & `config_sub_path`
2022-01-07Ports: Describe in README that 'depends' is an arrayErlend Lind Madsen
The README previously described `depends` as a space-separated string. This is now changed to an array, which seem to be the correct type used in the other Ports.
2021-07-22Ports: Add overridable pre_fetch method in .port_include.shKenneth Myhra
This adds an overridable pre_fetch method which is called from the fetch method at the very beginning. The pre_fetch method can be overridden in your package.sh script so that you can do any necessary preparations before the fetch method is called.
2021-07-08Ports: Add './package.sh shell' to get a shell with the build env setpancake
2021-06-09Ports: .port_include.sh add install_icon functionMax Trussell
2021-05-16Ports: Update the packages.db directory in READMEΓ–mer Kurttekin
"packages.db" used to be directly in the "Build" directory but it has been moved to "Build/i686/Root/usr/Ports/" in 6877a5b.
2021-04-20Ports: Improve consistency and quality of portsPanagiotis Vasilopoulos
- Replaced /Root with - Improved documentation. - Removed a few typos. - Replaced with - Added brackets in some cases. Most of the changes were reviewed and applied manually.
2021-04-20Everywhere: Replace SERENITY_ROOT with SERENITY_SOURCE_DIRPanagiotis Vasilopoulos
2021-04-11Ports: Fix Ports/README.md to match lint ruleBrian Gianforcaro
2021-02-15Everywhere: Canonicalize 'ReadMe' capitalizationBen Wiederhake
We now follow a common capitalization throughout the project: ./Ports/openssh/ReadMe.md ./Ports/python3/patches/ReadMe.md ./Ports/ReadMe.md ./Meta/Lagom/ReadMe.md ./ReadMe.md This filename is still obvious enough to be seen immediately.
2021-02-01Ports: Move packages.db from Ports/ to Build/Linus Groh
When removing and recreating the Build directory, it's quite annoying having to edit/remove Ports/packages.db as the installer won't install previously installed port dependencies again if they're still listed. This problem is easily solved by just considering packages.db a build-specific file.
2021-01-23Ports: Add table of all available portsLinus Groh
This adds a separate Markdown document comtaining a table with all available ports, including name, version number and website. This should make it easier to get an overview of what's available or learn more about ports one is not familiar with, as well as checking the current version of each port (many are outdated by now, and the version being hidden in the package.sh script doesn't improve that situation) and spotting ports with no defined version (i.e. install from the main branch), which can break easily and should be avoided. Please keep this list in sync when adding or updating ports. :^)
2021-01-23Ports: Add documentation :^)Linus Groh
This documents and explains how ports work and what variables, functions and options are available for `package.sh` scripts.
2019-09-24Ports: Switch to new ports system (#594)Larkin
Much redundancy is removed from package scripts with this system. It also supports simple dependency management, uninstalling (through BSD ports style plist files), cleaning up after itself (with clean, clean_dist, clean_all commands), etc.
2019-05-28Add the start of a simple ports infrastructureRobin Burchell