mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-18 17:50:06 +02:00
52 lines
1.0 KiB
Bash
52 lines
1.0 KiB
Bash
SUMMARY="The GNU partition editor"
|
|
DESCRIPTION="GNU Parted manipulates partition tables. This is useful for \
|
|
creating space for new operating systems, reorganizing disk usage, copying \
|
|
data on hard disks and disk imaging."
|
|
HOMEPAGE="http://www.gnu.org/software/parted"
|
|
COPYRIGHT="1999-2007 Free Software Foundation Inc."
|
|
LICENSE="GNU GPL v3"
|
|
REVISION="1"
|
|
SOURCE_URI="git://git.debian.org/git/parted/parted.git"
|
|
|
|
ARCHITECTURES="!x86_gcc2 !x86 !x86_64"
|
|
SECONDARY_ARCHITECTURES="!x86_gcc2 !x86"
|
|
|
|
PROVIDES="
|
|
parted$secondaryArchSuffix = $portVersion
|
|
cmd:parted$secondaryArchSuffix = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
cmd:git
|
|
cmd:autoconf
|
|
cmd:libtool
|
|
cmd:make
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:gperf
|
|
cmd:rsync
|
|
cmd:gettext
|
|
"
|
|
|
|
#PATCHES="parted.patch"
|
|
|
|
# TODO: Fix libdl test in configure.ac
|
|
BUILD()
|
|
{
|
|
./bootstrap
|
|
runConfigure ./configure --disable-dynamic-loading
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
}
|