mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 06:58:57 +02:00
As the only low-rating comment at HaikuDepot suggests, people just don't know how to use the app. The least to do is giving a bit of help in the description.
51 lines
1.2 KiB
Bash
51 lines
1.2 KiB
Bash
SUMMARY="A tool to quickly manipulate images"
|
|
DESCRIPTION="The Awesome Resizer is a freeware application that allows quick dynamic \
|
|
resizing of any image and much much more.
|
|
|
|
It works like this:
|
|
* Drag'n'drop an image.
|
|
* Resize the image's window.
|
|
* Choose a manipulator, like 'Drunk' and click on 'Apply' a few times.
|
|
* To save under the chosen file name and format, drag'n'drop the image, \
|
|
for example on the Desktop."
|
|
HOMEPAGE="https://github.com/HaikuArchives/TheAwesomeResizer"
|
|
COPYRIGHT="1999-2000 Jonathan Villemure"
|
|
LICENSE="MIT"
|
|
REVISION="3"
|
|
srcGitRev="9fc84791562f75e5d2bc3b2bece0057f0b86e685"
|
|
SOURCE_URI="https://github.com/HaikuArchives/TheAwesomeResizer/archive/$srcGitRev.zip"
|
|
CHECKSUM_SHA256="cc6abdb9e2a4db2fed515a9368211a3d4e68a01cf5d2621498ae2fb9b70c6c30"
|
|
SOURCE_DIR="TheAwesomeResizer-$srcGitRev"
|
|
|
|
ARCHITECTURES="all"
|
|
|
|
PROVIDES="
|
|
taresizer = $portVersion
|
|
app:TAResizer = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:g++
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
cd source
|
|
make $jobArgs OBJ_DIR=objects
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cp source/objects/TAResizer $appsDir/TAResizer
|
|
addAppDeskbarSymlink $appsDir/TAResizer
|
|
}
|