diff options
author | B. Watson <yalhcru@gmail.com> | 2022-04-04 16:30:41 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2022-04-04 16:30:41 -0400 |
commit | 22b20e5476debf76a6e7f51cba6db2b0e36e09c1 (patch) | |
tree | 6bdd6ac7e3e642115b07ede733917a8cdc9b931f /system/bulk_extractor | |
parent | 799e9e84fba1dbd001325414316001f548407e2c (diff) | |
download | slackbuilds-22b20e5476debf76a6e7f51cba6db2b0e36e09c1.tar.gz |
system/bulk_extractor: Fix docs.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'system/bulk_extractor')
-rw-r--r-- | system/bulk_extractor/bulk_extractor.SlackBuild | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/system/bulk_extractor/bulk_extractor.SlackBuild b/system/bulk_extractor/bulk_extractor.SlackBuild index 65325f5c6a..a2ad6037b7 100644 --- a/system/bulk_extractor/bulk_extractor.SlackBuild +++ b/system/bulk_extractor/bulk_extractor.SlackBuild @@ -24,6 +24,10 @@ # edited for 20210928_692ee97, October of 2021) +# 20220404 bkw: Modified by SlackBuilds.org, BUILD=3: +# - add missing README.md to doc dir. +# - replace broken COPYING symlink with LICENSE.md in doc dir. + # 20220323 bkw: Modified by SlackBuilds.org, BUILD=2: # - fix 32-bit build. # - remove 0-byte README from doc dir. @@ -33,7 +37,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=bulk_extractor VERSION=${VERSION:-20210928_692ee97} -BUILD=${BUILD:-2} +BUILD=${BUILD:-3} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -108,10 +112,10 @@ find $PKG/usr/man -type f -exec gzip -9 {} \; for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -ar AUTHORS COPYING ChangeLog NEWS doc/ $PKG/usr/doc/$PRGNAM-$VERSION +cp -ar AUTHORS LICENSE.md README.md ChangeLog NEWS doc/ $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild -find $PKG/usr/doc -type f -exec chmod 644 {} \; +find $PKG/usr/doc -type f -exec chmod 644 {} \+ mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc |