diff --git a/testing/kiss/build b/testing/kiss/build new file mode 100755 index 00000000..5ef302b0 --- /dev/null +++ b/testing/kiss/build @@ -0,0 +1,21 @@ +#!/bin/sh -e + +install -D kiss "$1/usr/bin/kiss" +install -D kiss_path.sh "$1/etc/profile.d/kiss_path.sh" + +# Install kiss utilities. +cp contrib/* "$1/usr/bin/" + +# Install distribution documentation. +for doc in docs/site/*.txt; do + install -Dm644 "$doc" "$1/usr/share/doc/kiss/${doc##*/}" +done + +# Install the Wiki. +cp -r wiki "$1/usr/share/doc/kiss/wiki" + +# Remove unnecessary pages. +rm -f "$1/usr/share/doc/kiss/wiki/README.txt" \ + "$1/usr/share/doc/kiss/news.txt" \ + "$1/usr/share/doc/kiss/blog.txt" \ + "$1/usr/share/doc/kiss/screenshots.txt" diff --git a/testing/kiss/checksums b/testing/kiss/checksums new file mode 100644 index 00000000..debae6fe --- /dev/null +++ b/testing/kiss/checksums @@ -0,0 +1,4 @@ +6e47bd8ce73cfdc6e102d3e46a24e30e8aa02b1da0c97b9ba4842b57ab8b6b06 4.0.0.tar.gz +e761adb1b1177fd7ee2451cae8ee40171ec0ea4bf50d0c48f16c1de6b58db7ca 938d4625a976b395c53a31f2827c308e752b5fb0.tar.gz +e33009fc584c319e63fefddda37c3624842bd04def3b8e5eb96ec39b80533940 b2a6f73d1d8ca444b953b65b55ef9b6f0b4169ef.tar.gz +d56d159fd9f0c39a2692b4b00b1543b2eb476a0659aa6899efa0ff460863dc70 kiss_path.sh diff --git a/testing/kiss/depends b/testing/kiss/depends new file mode 100644 index 00000000..5664e303 --- /dev/null +++ b/testing/kiss/depends @@ -0,0 +1 @@ +git diff --git a/testing/kiss/files/kiss_path.sh b/testing/kiss/files/kiss_path.sh new file mode 100644 index 00000000..95cf8fac --- /dev/null +++ b/testing/kiss/files/kiss_path.sh @@ -0,0 +1 @@ +export KISS_PATH=/var/db/kiss/repo/core:/var/db/kiss/repo/extra:/var/db/kiss/repo/xorg diff --git a/testing/kiss/post-install b/testing/kiss/post-install new file mode 100755 index 00000000..30384d19 --- /dev/null +++ b/testing/kiss/post-install @@ -0,0 +1,11 @@ +#!/bin/sh + +find "$KISS_ROOT/usr/lib" \ + ! -type d \ + -name \*.la \ + -exec rm -f -- {} + + +find "$KISS_ROOT/var/db/kiss/installed" \ + ! -type d \ + -name manifest \ + -exec sed -i '/.*\.la$/d' {} + diff --git a/testing/kiss/sources b/testing/kiss/sources new file mode 100644 index 00000000..47940a74 --- /dev/null +++ b/testing/kiss/sources @@ -0,0 +1,4 @@ +https://github.com/kisslinux/kiss/archive/4.0.0.tar.gz +https://github.com/kisslinux/website/archive/938d4625a976b395c53a31f2827c308e752b5fb0.tar.gz docs +https://github.com/kisslinux/wiki/archive/b2a6f73d1d8ca444b953b65b55ef9b6f0b4169ef.tar.gz wiki +files/kiss_path.sh diff --git a/testing/kiss/version b/testing/kiss/version new file mode 100644 index 00000000..f5e1c911 --- /dev/null +++ b/testing/kiss/version @@ -0,0 +1 @@ +4.0.0 1