Was supposed to be a linux distribution, now just a collection of build scripts for packages on top of (ideally) any distribution.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

18 lines
874 B

In some build scripts, I might use tags to denote "anti-features" of some of
the scripts I supply. This doesn't mean they don't work, it's just to indicate
they contain some things that are undesireable to have to do in a build script.
These tags should be defined at the top of the file with some comment, a la:
# TAG: Details
This is the list of currently defined tags:
- STATIC: Contains static libraries
- PATHS: Uses sed scripts or other hacks to fix hardcoded paths
- DOWNLOAD: Needs an internet connection during build
- BIN: Includes pre-compiled binaries
- FLAGS: Doesn't respect one or more *FLAGS variables
- PATCH: Requires a patch to build correctly
- OLD: Purposefully using a deprecated version because new versions don't build.
At the time of writing, not all of the build scripts include all of the
correct flags yet. They will be fixed as time goes on.