mirror of
https://gitee.com/spark-store-project/spark-web-app-runtime.git
synced 2026-06-21 21:53:52 +08:00
1b3d161f4d
支持 dpkg-buildpackage 打包 Log: 支持 dpkg-buildpackage 打包;整理项目目录结构
13 lines
299 B
Bash
Executable File
13 lines
299 B
Bash
Executable File
#!/bin/sh
|
|
|
|
case "$1" in
|
|
configure)
|
|
# Create symbol links for binary files
|
|
ln -s -f /opt/durapps/spark-webapp-runtime/bin/spark-webapp-runtime /usr/bin/spark-webapp-runtime
|
|
ln -s -f /opt/durapps/spark-webapp-runtime/share/spark-webapp-runtime /usr/share/spark-webapp-runtime
|
|
;;
|
|
|
|
*)
|
|
;;
|
|
esac
|