mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
60 lines
1.4 KiB
Plaintext
60 lines
1.4 KiB
Plaintext
SUMMARY="A powerfull renaming utility"
|
|
DESCRIPTION="
|
|
PecoRename is a powerfull renaming utility, which allows you to rename many \
|
|
files according to a preset pattern.
|
|
|
|
* You can rename your files in many different ways:
|
|
* Number your files in order
|
|
* Search and replace
|
|
* Delete characters
|
|
* Make uppercase/lowercase
|
|
* Add the suitable file extension according to the file type
|
|
* Insert, append or replace text...
|
|
|
|
PecoRename gives you an easy to use interface with a powerfull tool behind it.\
|
|
The changes can be previewed in realtime.
|
|
And - of course - all functions support special chars (like ä, â...).
|
|
|
|
Whenever you have to rename some or many files the same way, this is YOUR \
|
|
program!
|
|
"
|
|
HOMEPAGE="https://github.com/HaikuArchives/PecoRename"
|
|
SRC_URI="git://github.com/HaikuArchives/PecoRename#cdca0ce831ab87b209758bcdd4edc4ea66efd660"
|
|
COPYRIGHT="Copyright 2008 Werner Freytag"
|
|
LICENSE="MIT"
|
|
REVISION="1"
|
|
|
|
ARCHITECTURES="x86_gcc2 !x86 !x86_64"
|
|
SECONDARY_ARCHITECTURES="x86_gcc2 !x86"
|
|
|
|
PROVIDES="
|
|
pecorename = $portVersion
|
|
"
|
|
REQUIRES=""
|
|
|
|
BUILD_REQUIRES="haiku >= $haikuVersion"
|
|
|
|
BUILD_PREREQUIRES="
|
|
haiku${secondaryArchSuffix}_devel >= $haikuVersion
|
|
makefile_engine
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:make
|
|
cmd:mkdepend
|
|
"
|
|
|
|
PATCHES="pecorename-$portVersion.patch"
|
|
|
|
BUILD()
|
|
{
|
|
cd trunk/Main
|
|
make $jobArgs OBJ_DIR=objects
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cp trunk/Main/PecoRename $appsDir/PecoRename
|
|
|
|
addAppDeskbarSymlink $appsDir/PecoRename
|
|
}
|