1
0
mirror of https://codeberg.org/kiss-community/kiss synced 2024-07-02 14:02:26 +00:00
Commit Graph

18 Commits

Author SHA1 Message Date
Dylan Araps
40ff709432
kiss: Remove KISS_RM
I never really liked how this was implemented and it's
rather limited in its use. It was cumbersome to edit
the list to make even a minor change.

Instead, I now recommend using 'KISS_HOOK'. It gives
you total control. KISS_RM can be implemented on a
per-package basis, for all packages overall or
conditionally.

You're also not limited to a simple list of removals.
You can do whatever you like pre- and post- build.

Here's an example script to get you started. There
is more information in the manual and README.

case $TYPE in
    pre-build)
        case $PKG in
           zlib) export CFLAGS="-Os -static" ;;
           curl) export CFLAGS="-O3" ;;
        esac
    ;;

    post-build)
        : "${DEST:?DEST is unset}"

        rm -rf "$DEST/usr/share/doc"
        rm -rf "$DEST/usr/share/gettext"
    ;;
esac
2020-02-20 00:21:45 +02:00
Dylan Araps
040145e118
kiss: Added kiss env 2020-02-19 20:22:43 +02:00
Dylan Araps
938e8784a9
docs: update 2020-02-10 22:35:08 +02:00
Dylan Araps
ac207e40ab
docs: update 2020-02-09 11:18:14 +02:00
Dylan Araps
2c26450d7c
docs: update 2020-02-09 11:17:36 +02:00
Dylan Araps
cb7e57e8ed
kiss: Add back KISS_DEBUG. Closes #109 2020-02-08 10:55:58 +02:00
Dylan Araps
cfa4123121
KISS_HOOK: docs 2020-02-07 15:39:56 +02:00
Dylan Araps
3c66ece920
docs: update 2020-02-06 15:28:19 +02:00
Dylan Araps
1c8a428ef8
docs: update 2020-01-30 11:05:07 +02:00
Dylan Araps
ef088ba610
docs: update 2020-01-29 15:11:43 +02:00
Dylan Araps
37e1c68f2a
docs: update 2020-01-29 12:36:22 +02:00
Dylan Araps
60ac1c094e
kiss: Store builds logs on fail 2020-01-28 10:08:15 +02:00
Dylan Araps
5a73b17a99
docs: update 2020-01-18 11:05:28 +02:00
Dylan Araps
cf1c9598c1
man: Added KISS_BFD 2020-01-11 14:37:09 +02:00
Dylan Araps
feac556f56
man: Add info about SAMUFLAGS 2020-01-10 14:54:03 +02:00
Dylan Araps
e3684f0274
man: Fix CMAKE_GENERATOR 2020-01-10 14:36:05 +02:00
Dylan Araps
c15eccaee1
docs: update 2019-11-16 15:55:44 +00:00
Dylan Araps
26b38c0ec2
docs: update 2019-10-07 16:31:26 +03:00