mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-19 18:20:07 +02:00
40 lines
950 B
Plaintext
40 lines
950 B
Plaintext
DESCRIPTION="Indent program source files"
|
|
HOMEPAGE="http://indent.isidore-it.eu/beautify.html"
|
|
SRC_URI="http://indent.isidore-it.eu/indent-2.2.11.tar.gz"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND="sys-devel/gettext >= 0.17
|
|
net-misc/rsync >= 3.0.7
|
|
app-text/texi2html >= 1.82"
|
|
CHECKSUM_MD5="98beafca62472805a3739d3867d5d70f"
|
|
BUILD()
|
|
{
|
|
cd indent-2.2.11
|
|
libtoolize --force --copy --install
|
|
./bootstrap
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY`
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd indent-2.2.11
|
|
make install DESTDIR=${DESTDIR}
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
cd indent-2.2.11
|
|
# make test
|
|
# make check
|
|
}
|
|
|
|
LICENSE="BSD (3-clause)"
|
|
COPYRIGHT="1999-2000 Carlo Wood. All rights reserved
|
|
1994, 1996-1997 Joseph Arceneaux All rights reserved.
|
|
1992, 2002, 2008 Free Software Foundation, Inc. All rights reserved.
|
|
1985 Sun Microsystems, Inc.
|
|
1980 The Regents of the University of California.
|
|
1976 Board of Trustees of the University of Illinois. All rights reserved."
|
|
|