diff options
author | B. Watson <yalhcru@gmail.com> | 2022-04-18 15:57:56 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2022-04-18 15:57:56 -0400 |
commit | 57823068d6cbaf9b2b8355f6e0c3b28350b6d9d5 (patch) | |
tree | 5a74f56d169503d73b35a3bdd46f1807adfa99c0 /libraries/libetpan | |
parent | c6444f6cc7166d49daec42ae99b20cbf6b3f9c1b (diff) |
libraries/libetpan: Fix docs.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'libraries/libetpan')
-rw-r--r-- | libraries/libetpan/libetpan.SlackBuild | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libraries/libetpan/libetpan.SlackBuild b/libraries/libetpan/libetpan.SlackBuild index bf8af264b8eb..5258d598e64f 100644 --- a/libraries/libetpan/libetpan.SlackBuild +++ b/libraries/libetpan/libetpan.SlackBuild @@ -22,11 +22,14 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20220418 bkw: Modified by SlackBuilds.org, BUILD=2: +# - remove empty AUTHORS from doc dir. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=libetpan VERSION=${VERSION:-1.9.4} -BUILD=${BUILD:-2} +BUILD=${BUILD:-3} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -38,9 +41,6 @@ if [ -z "$ARCH" ]; then esac fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -75,9 +75,9 @@ cd $PRGNAM-$VERSION chown -R root:root . find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ + -o -perm 511 \) -exec chmod 755 {} \+ -o \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+ NOCONFIGURE=yes ./autogen.sh @@ -94,7 +94,7 @@ make make install-strip DESTDIR=$PKG mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a AUTHORS COPYRIGHT ChangeLog NEWS README.md \ +cp -a COPYRIGHT ChangeLog NEWS README.md \ $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |