Files
haikuports/haiku-apps/pecorename/pecorename-1.5.recipe
Augustin Cavalier 6299524859 Remove cmd:mkdepend from BUILD_PREREQUIRES of makefile_engine apps.
Not needed now that the makefile_engine package depends on
cmd:mkdepend directly.
2015-07-19 13:59:19 -04:00

64 lines
1.6 KiB
Bash

SUMMARY="A powerful renaming utility"
DESCRIPTION="
PecoRename is a powerful renaming utility, which allows you to rename many \
files according to a preset pattern. It also installs a Tracker add-on that \
can be invoked on the selected files with the shortcut ALT+OPT+R.
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 powerful 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="http://www.maybe.de/software/pecorename"
SOURCE_URI="git://github.com/HaikuArchives/PecoRename#ac7e6b511b1a24866e4a34fa170023e9a89448fb"
COPYRIGHT="2008 Werner Freytag"
LICENSE="MIT"
REVISION="3"
ARCHITECTURES="x86_gcc2 !x86 !x86_64"
SECONDARY_ARCHITECTURES="x86_gcc2 !x86"
PROVIDES="
pecorename = $portVersion
app:PecoRename = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:gcc$secondaryArchSuffix
cmd:make
"
BUILD()
{
cd Main
make $jobArgs OBJ_DIR=objects
cd ../Tracker\ Add-On
make $jobArgs OBJ_DIR=objects
}
INSTALL()
{
mkdir -p $appsDir
cp Main/PecoRename $appsDir
mkdir -p $addOnsDir/Tracker
cp Tracker\ Add-On/PecoRename $addOnsDir/Tracker
addAppDeskbarSymlink $appsDir/PecoRename
}