convmv, bump version (#1495)

This commit is contained in:
Schrijvers Luc
2017-07-06 18:44:07 +02:00
committed by diversys
parent 4c9f64b145
commit e480968989
2 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,52 @@
SUMMARY="Convert filenames from one encoding to another"
DESCRIPTION="convmv is meant to help convert a single filename, a directory \
tree and the contained files or a whole filesystem into a different encoding. \
It just converts the filenames, not the content of the files. A special \
feature of convmv is that it also takes care of symlinks, also converts the \
symlink target pointer in case the symlink target is being converted too."
HOMEPAGE="https://www.j3e.de/linux/convmv/"
COPYRIGHT="2003-2017 Bjoern JACKE"
LICENSE="GNU GPL v2"
REVISION="1"
SOURCE_URI="https://www.j3e.de/linux/convmv/convmv-$portVersion.tar.gz"
CHECKSUM_SHA256="f898fd850c8ef5abe48f7536e4b23ce4e11b6133974b2fc41d9197dfecc1c027"
PATCHES="convmv-$portVersion.patchset"
ARCHITECTURES="any"
PROVIDES="
convmv = $portVersion
cmd:convmv
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
cmd:gcc
cmd:make
cmd:perl
cmd:which
#needed to perform the test
cmd:diff
cmd:find
"
BUILD()
{
make PREFIX=$prefix MANDIR=$manDir
}
INSTALL()
{
make install PREFIX=$prefix MANDIR=$manDir
}
TEST()
{
make test
}