diff options
| author | emmett1 <emmett1.2miligrams@protonmail.com> | 2024-12-25 22:14:36 +0800 |
|---|---|---|
| committer | emmett1 <emmett1.2miligrams@protonmail.com> | 2024-12-25 22:14:36 +0800 |
| commit | a49505b39f680d910148f5678a5b31cb3f8e3db4 (patch) | |
| tree | d2eefa58393b9d079a931a01afb6a3a695ff9485 /doc | |
| parent | 8bc336fa6fae5b7c7dde2afa70750f089a04c843 (diff) | |
| download | autils-a49505b39f680d910148f5678a5b31cb3f8e3db4.tar.gz autils-a49505b39f680d910148f5678a5b31cb3f8e3db4.zip | |
updates
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/apkg.conf.readme | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/apkg.conf.readme b/doc/apkg.conf.readme index dd33863..397218f 100644 --- a/doc/apkg.conf.readme +++ b/doc/apkg.conf.readme @@ -29,6 +29,15 @@ APKG_SOURCE_DIR=<path to source directory> # skip user prompt when using '-I' and '-U' options (disable interactive mode, good to use in scripting) #APKG_NOPROMPT=1 +# package dependencies alias +# example: point openssl to libressl, so when installing package that depends on openssl will pull libressl instead +# format: '<realpkg>:<aliasedpkg>' +#APKG_ALIAS="openssl:libressl pkg1:pkg2" + +# package mask +# avoid package(s) from get upgraded +#APKG_MASK="musl gcc linux" + # you can define and export whatever needed variable here as long its safe and not conflicting with other important # build variable, example, keep_* can be used here to set globally #keep_static=1 |