diff options
| author | Danilo M. <danix@danix.xyz> | 2026-07-10 20:47:27 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-07-10 20:47:27 +0200 |
| commit | f0d66a9c421a4911cf182aea43a107fcb146ebfe (patch) | |
| tree | 171c7612ced3708e5ad60ba89f837f9eaf362523 /click/click.SlackBuild | |
| parent | 3128547e4235e1ad9cc573d0a337401efcf65927 (diff) | |
| download | my-slackbuilds-f0d66a9c421a4911cf182aea43a107fcb146ebfe.tar.gz my-slackbuilds-f0d66a9c421a4911cf182aea43a107fcb146ebfe.zip | |
click: fix doc install for 8.4.2 (rst docs moved to md)
Upstream 8.4.2 dropped CHANGES.rst and converted docs/*.rst to markdown.
The old cp list failed on the missing paths and was masked with || true,
which silently shipped incomplete docs. Copy the files 8.4.2 actually has
(LICENSE.txt, README.md, docs/*.md) and drop the || true mask.
Diffstat (limited to 'click/click.SlackBuild')
| -rw-r--r-- | click/click.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/click/click.SlackBuild b/click/click.SlackBuild index 6e997bd..a3e3dd4 100644 --- a/click/click.SlackBuild +++ b/click/click.SlackBuild @@ -73,7 +73,7 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a CHANGES.rst LICENSE.txt README.md docs/*.rst $PKG/usr/doc/$PRGNAM-$VERSION || true +cp -a LICENSE.txt README.md docs/*.md $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |
