Files
haikuports/sys-block/parted/parted-3.1.53_git.recipe
François Revol 9a74963252 parted: update recipe; still broken
It fails at getting gnulib anyway.

I just noticed they changed git repository as well.
2015-12-22 02:36:37 +01:00

72 lines
1.6 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#1c659d5cc6830c6f4f26660e9049582afbad3fd3"
ARCHITECTURES="!x86_gcc2 !x86 !x86_64"
SECONDARY_ARCHITECTURES="!x86_gcc2 !x86"
PROVIDES="
parted$secondaryArchSuffix = $portVersion
cmd:parted$secondaryArchSuffix = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libiconv$secondaryArchSuffix
lib:libintl$secondaryArchSuffix
lib:libncurses$secondaryArchSuffix
lib:libreadline$secondaryArchSuffix
lib:libuuid$secondaryArchSuffix
"
BUILD_REQUIRES="
devel:libiconv$secondaryArchSuffix
devel:libintl$secondaryArchSuffix
devel:libncurses$secondaryArchSuffix
devel:libreadline$secondaryArchSuffix
devel:libuuid$secondaryArchSuffix
"
BUILD_PREREQUIRES="
haiku${secondaryArchSuffix}_devel
cmd:git
cmd:autoconf
cmd:gawk
cmd:grep
cmd:libtool
cmd:make
cmd:makeinfo
cmd:gcc$secondaryArchSuffix
cmd:gnulib_tool$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
cmd:gperf
cmd:pkg_config$secondaryArchSuffix
cmd:rsync
cmd:gettext
"
PATCHES="parted-3.1.53_git.patchset"
# TODO: Fix libdl test in configure.ac
BUILD()
{
./bootstrap
runConfigure ./configure --disable-dynamic-loading --disable-device-mapper
make
}
INSTALL()
{
make install
}
TEST()
{
make check
}