mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 06:58:57 +02:00
54 lines
1.4 KiB
Bash
54 lines
1.4 KiB
Bash
SUMMARY="A highly configurable, easily modifiable source code beautifier"
|
|
DESCRIPTION="\
|
|
* Ident code, aligning on parens, assignments, etc
|
|
* Align on '=' and variable definitions
|
|
* Align structure initializers
|
|
* Align #define stuff
|
|
* Align backslash-newline stuff
|
|
* Reformat comments (a little bit)
|
|
* Fix inter-character spacing
|
|
* Add or remove parens on return statements
|
|
* Add or remove braces on single-statement if/do/while/for statements
|
|
* Supports embedded SQL 'EXEC SQL' stuff
|
|
* Highly configurable - 454 configurable options!"
|
|
HOMEPAGE="http://uncrustify.sourceforge.net/"
|
|
COPYRIGHT="2005-2014 Ben Gardner"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="1"
|
|
SOURCE_URI="https://github.com/bengardner/uncrustify/archive/uncrustify-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="42c9f84340c5d6a0087037c96b4fe4b46955691e7038700dec98a2e4782b57a3"
|
|
SOURCE_DIR="uncrustify-uncrustify-$portVersion"
|
|
|
|
ARCHITECTURES="!x86_gcc2 x86 ?x86_64"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
uncrustify$secondaryArchSuffix = $portVersion compat >= 0.60
|
|
cmd:uncrustify = $portVersion compat >= 0.60
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:make
|
|
cmd:awk
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
runConfigure --omit-dirs binDir ./configure --bindir=$prefix/bin
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
}
|