現在、Snapcraft を使用して Apache Spark を動作させようとしていますが、何が間違っていますか?
.yaml は次のとおりです。
name: spark
version: 1.0
architectures:
- amd64
summary: The Spark Engine
description: This is the Spark Engine produced by snapcraft with maven.
confinement: strict
apps:
spark:
command: bin/wrapper
daemon: simple
plugs: [network-bind]
parts:
webapp:
plugin: maven
source: https://github.com/lool/snappy-mvn-demo.git
source-type: git
spark:
plugin: tar-content
source: http://www-eu.apache.org/dist/spark/spark-1.6.2/spark-1.6.2.tgz
local-files:
plugin: make
source: .
メイクファイルは次のとおりです。
all:
install:
cp -a spark-conf/ $(DESTDIR)/
ラッパーが見つからないため、make ファイルにはラッパーが含まれていません。
何か案は?