diff options
author | B. Watson <yalhcru@gmail.com> | 2021-08-29 00:48:29 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-10-13 00:51:51 +0700 |
commit | 65b046d70f685cb72aa6ea9394c5c5c9fb7820e7 (patch) | |
tree | 426da78e8762a9117ac06fd733988eca93c5dcd0 /system/man-pages-ru | |
parent | cdc7992a0dbde187a0b9fda21db699ece2e3b842 (diff) |
system/man-pages-ru: Use correct install path.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/man-pages-ru')
-rw-r--r-- | system/man-pages-ru/man-pages-ru.SlackBuild | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/system/man-pages-ru/man-pages-ru.SlackBuild b/system/man-pages-ru/man-pages-ru.SlackBuild index b321bf810036..a19e2acc25d9 100644 --- a/system/man-pages-ru/man-pages-ru.SlackBuild +++ b/system/man-pages-ru/man-pages-ru.SlackBuild @@ -22,6 +22,10 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20210829 bkw: Install man pages in /usr/share/ru, not +# /usr/share/ru.UTF-8. man-db will look in both places. Changed this +# to make it match the other man-pages-* builds. + # 20201105 bkw: This hasn't been updated in 7+ years, and I'm not sure # it ever worked properly with 14.2's man command. Update to latest # version and document how to get this stuff to work with man-db and a @@ -31,7 +35,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=man-pages-ru VERSION=${VERSION:-5.03_20191017} # Set the version to something sane. -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -39,9 +43,6 @@ SRCVERSION="$(echo $PRGNAM_*.tar.bz2 | rev | cut -f 3- -d . | cut -f 1 -d _ | re ARCH=noarch -# 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 @@ -66,9 +67,9 @@ find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ # This one is included in Slackware. rm man5/passwd.5 -mkdir -p $PKG/usr/man/ru.UTF-8 +mkdir -p $PKG/usr/man/ru for section in 1 2 3 4 5 6 7 8 ; do - mv man$section $PKG/usr/man/ru.UTF-8 + mv man$section $PKG/usr/man/ru done find $PKG/usr/man -type f -exec gzip -9 {} \+ |