mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-15 00:00:07 +02:00
53 lines
1.1 KiB
Bash
53 lines
1.1 KiB
Bash
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
|
|
}
|
|
|