Filesys-Fuse3

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

        if ($line =~ /^OpenIndiana /) {
            $explanation = 'Please enable the \'sfe\' repository, and install the libfuse package';
        }
        else {
            $explanation = 'Don\'t know how to enable FUSE support on this Solaris flavor';
        }
    }
    elsif ($^O eq 'openbsd') {
        $explanation = 'Please see README for information about OpenBSD FUSE support';
    }
    else {
        $explanation = 'There is no FUSE support for your platform to our knowledge, sorry';
    }
    die("Cannot build for platform: $^O\n", $explanation, "\n");
}
if ($fusever && $fusever + 0 < 2.6) {
    die "FUSE API is ", $fusever, ", must be 2.6 or later\n";
} else {
    warn "fuse version found: ", $fusever, "\n";
}

chomp(my $inc = `$command --cflags-only-I $fuse 2> /dev/null`);
chomp(my $libs = `$command --libs-only-L $fuse 2> /dev/null`);
$libs .= ' ';
chomp($libs .= `$command --libs-only-l $fuse 2> /dev/null` || (($^O eq 'netbsd') ? '-lrefuse' : '-lfuse'));
# Needed for Fuse on OS X 10.6, due to 10.6 and up always using the 64-bit
# inode structs; unfortunately MacFuse doesn't just do the right thing
# on its own. (Not applicable for OSXFUSE; it uses a new SONAME, so we
# don't have to worry about conflicts/compatibility, it "just works".)
if ($^O eq 'darwin' && (uname())[2] =~ /^1[01]\./) {
    $libs =~ s/-lfuse\b/-lfuse_ino64/;
}
chomp(my $def = '-Wall -DFUSE_USE_VERSION=30 ' . `$command --cflags-only-other $fuse 2> /dev/null` || '-D_FILE_OFFSET_BITS=64');
chomp($def .= `$command --libs-only-other $fuse 2> /dev/null`);
$def .= ' -DPERL_HAS_64BITINT' if $Config{'use64bitint'};
$def .= ' -DUSING_LIBREFUSE' if $libs =~ m{-lrefuse\b};

# As a feature was added in a micro version update (fallocate(),
# specifically), we need to know the micro version level, and there's
# nothing in the headers that supplies it, so I'm gonna ghetto this
# up.
my ($major, $minor, $micro) = split(m{\.}, $fusever);
if ($^O eq 'openbsd') {
    # Note: This is a hack. Unfortunately OpenBSD's FUSE lies in its
    # pkgconfig and claims to be FUSE 2.8, when it only supplies the
    # FUSE 2.6 API. This breaks the module, so I'm going to work around
    # that for now...
    $minor = 6;
}
if (!defined $micro) {
    $micro = 0;
}
$def .= ' -DFUSE_FOUND_MAJOR_VER=' . $major;
$def .= ' -DFUSE_FOUND_MINOR_VER=' . $minor;
$def .= ' -DFUSE_FOUND_MICRO_VER=' . $micro;

WriteMakefile(
    'NAME'          => 'Filesys::Fuse3',
    'VERSION_FROM'  => 'Fuse3.pm', # finds $VERSION
    'PREREQ_PM'     => { # e.g., Module::Name => 1.1
        'Lchown'            => 0,
        'Filesys::Statvfs'  => 0,
        'Unix::Mknod'       => 0,
    },
    ABSTRACT_FROM   => 'Fuse3.pm', # retrieve abstract from module
    AUTHOR          => 'Dominique Dumont <domi.dumont@free.fr>',
    'LICENSE' => 'LGPL_2_1',
    META_MERGE => {
        resources => {
            license => 'http://www.gnu.org/licenses/lgpl-2.1.html',
            bugtracker => 'http://github.com/dod38fr/perl-filesys-fuse3/issues',
            repository => 'http://github.com/dod38fr/perl-filesys-fuse3'
        },
    },
    'LIBS'          => $libs, # e.g., '-lm'
    'DEFINE'        => $def, # e.g., '-DHAVE_SOMETHING'
    'OPTIMIZE'      => '-g -ggdb',
    # Insert -I. if you add *.h files later:
    'INC'           => $inc, # e.g., '-I/usr/include/other'
    # Un-comment this if you add C files to link with later:
    'OBJECT'        => 'Fuse3$(OBJ_EXT)', # link all the C files too
);

sub MY::postamble {
    return <<'MAKE_MORE';

cpan:
	make clean
	rm -f Filesys-Fuse3-*.tar.gz
	perl Makefile.PL
	make dist
	make disttest
	@echo
	@echo -n "Upload" Filesys-Fuse3-*.tar.gz "to CPAN? [y/N]:"
	@read upload; \
	if [ "$$upload" = "y" ] ; then \
		cpan-upload -verbose Filesys-Fuse3-*.tar.gz; \
	fi

MAKE_MORE
};

# vim: ts=4 ai et hls



( run in 0.737 second using v1.01-cache-2.11-cpan-71847e10f99 )