system/convmv: Updated for version 1.15.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
This commit is contained in:
parent
b34140a82c
commit
8efd4f6f72
|
@ -3,6 +3,3 @@ whole filesystems to a different encoding. Though it's primary written
|
|||
to convert from/to UTF-8 it can also be used with almost any other
|
||||
charset encoding. Convmv can also be used for case conversion from
|
||||
upper to lower case and vice versa with virtually any charset.
|
||||
|
||||
ATTENTION: Perl 5.10 seems to have a broken from_to() function so that
|
||||
convmv can not convert files to UTF-8 without using the --nosmart switch!
|
||||
|
|
|
@ -4,16 +4,14 @@
|
|||
# Written by Oleg O. Chukaev <oleg.chukaev@mail.ru>
|
||||
|
||||
PRGNAM=convmv
|
||||
VERSION=1.14
|
||||
VERSION=1.15
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
# Automatically determine the architecture we're building on:
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="convmv"
|
||||
VERSION="1.14"
|
||||
VERSION="1.15"
|
||||
HOMEPAGE="http://www.j3e.de/linux/convmv/"
|
||||
DOWNLOAD="http://www.j3e.de/linux/convmv/convmv-1.14.tar.gz"
|
||||
MD5SUM="d41238051c13b2e6c0cc2310a8f69d68"
|
||||
DOWNLOAD="http://www.j3e.de/linux/convmv/convmv-1.15.tar.gz"
|
||||
MD5SUM="b1bb703c08c6355868d15890ff193f7d"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||
# up the first '|' above the ':' following the base package name, and the '|'
|
||||
# on the right side marks the last column you can put a character in. You must
|
||||
# make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':'.
|
||||
# The "handy ruler" below makes it easier to edit a package description.
|
||||
# Line up the first '|' above the ':' following the base package name, and
|
||||
# the '|' on the right side marks the last column you can put a character in.
|
||||
# You must make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
convmv: convmv (convert filenames to utf8 or any other charset)
|
||||
|
|
Loading…
Reference in New Issue