mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
55 lines
1.1 KiB
Plaintext
55 lines
1.1 KiB
Plaintext
SUMMARY="Filesystem benchmarking program"
|
|
DESCRIPTION="Filesystem benchmarking program"
|
|
|
|
#NOTE: The author retains the exclusive right to publish derivative works based on this work, including, but not limited to, revised versions of this work.
|
|
|
|
LICENSE="iozone"
|
|
COPYRIGHT="1991-2001, William D. Norcott
|
|
2010, Don Capps"
|
|
|
|
HOMEPAGE="http://www.iozone.org/"
|
|
SRC_URI="http://www.iozone.org/src/current/iozone3_326.tar"
|
|
|
|
CHECKSUM_SHA256="bc0a40b2cc7f2e8c6dcfbbff82f1df82ad735f02c9a7db59f8364b76f43f7063"
|
|
|
|
SOURCE_DIR="iozone3_326"
|
|
|
|
REVISION="1"
|
|
|
|
ARCHITECTURES="x86 x86_gcc2"
|
|
|
|
PATCHES="iozone-3.326.patch"
|
|
|
|
PROVIDES="
|
|
cmd:iozone = $portVersion
|
|
cmd:fileop = $portVersion
|
|
iozone = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
cmd:make
|
|
cmd:cc
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
cd src/current/
|
|
make haiku
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd src/current/
|
|
cp iozone $binDir
|
|
cp fileop $binDir
|
|
|
|
mkdir -p $manDir/man1
|
|
cp ../../docs/iozone.1 $manDir/man1
|
|
} |