blob: 8dff176a7dc4122a411bc46fc9206f205703196a (
plain)
1
2
3
4
5
6
7
8
9
10
|
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
'NAME' => 'FS::SessionClient',
'VERSION_FROM' => 'SessionClient.pm', # finds $VERSION
'EXE_FILES' => [ 'fs_sessiond' ],
'INSTALLSCRIPT' => '/usr/local/sbin',
'PERM_RWX' => '750',
);
|