Alien-libzookeeper
    
    
  
  
  
view release on metacpan or search on metacpan
        url     => 'https://github.com/hugmeir/zookeeper/archive/4b6b9dc0a6a419958ab27af8699e8417ab0f8dac.tar.gz',
    );
    plugin Extract => 'tar.gz';
    plugin 'Build::CMake' => ();
    build [
        'cd %{.install.extract}/zookeeper-client/zookeeper-client-c',
        [
            '%{cmake}',
                '-DCMAKE_BUILD_TYPE=Release', # release, no debug symbols
                '-DWANT_SYNCAPI=ON',          # sync and async symbols
                '-DWANT_CPPUNIT=OFF',         # we don't run `make test`
                '-DWITH_CYRUS_SASL:BOOL=OFF', # TODO: should probe for sasl
                @{ meta->prop->{plugin_build_cmake}->{args} },
                '%{.install.extract}/zookeeper-client/zookeeper-client-c',
        ],
        [
            '%{make}',
                '-C' => '%{.install.extract}/zookeeper-client/zookeeper-client-c',
        ],
( run in 0.800 second using v1.01-cache-2.11-cpan-5dc5da66d9d )