mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-20 10:40:05 +02:00
42 lines
1.0 KiB
Bash
42 lines
1.0 KiB
Bash
SUMMARY="Get information about a class and its structure"
|
|
DESCRIPTION="Class::Inspector allows you to get information about a loaded class. Most or all of \
|
|
this information can be found in other ways, but they aren't always very friendly, and usually \
|
|
involve a relatively high level of Perl wizardry, or strange and unusual looking code. \
|
|
Class::Inspector attempts to provide an easier, more friendly interface to this information."
|
|
HOMEPAGE="https://metacpan.org/pod/Class::Inspector"
|
|
COPYRIGHT="2002-2019 by Adam Kennedy"
|
|
LICENSE="Artistic"
|
|
REVISION="1"
|
|
SOURCE_URI="https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/Class-Inspector-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="cc295d23a472687c24489d58226ead23b9fdc2588e522f0b5f0747741700694e"
|
|
SOURCE_DIR="Class-Inspector-$portVersion"
|
|
|
|
ARCHITECTURES="any"
|
|
|
|
PROVIDES="
|
|
class_inspector = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
vendor_perl
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:make
|
|
cmd:perl
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
perl Makefile.PL PREFIX=$prefix
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install DESTDIR="${DESTDIR}"
|
|
}
|