forked from scala/scala3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add prel. build settings to build deb package
- Loading branch information
1 parent
56abade
commit c8e9d6d
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,3 +35,12 @@ val `vscode-dotty` = Build.`vscode-dotty` | |
|
||
inThisBuild(Build.thisBuildSettings) | ||
inScope(Global)(Build.globalSettings) | ||
|
||
//added to try native packaging: should probably go elsewhere (?) | ||
//https://www.scala-sbt.org/sbt-native-packager/formats/debian.html#requirements | ||
enablePlugins(JavaAppPackaging) | ||
enablePlugins(DebianPlugin) | ||
debianPackageDependencies := Seq("java8-runtime-headless") | ||
maintainer := "[email protected]" // Who should be the person? must be a person? | ||
packageSummary := "scala3" // should include the right version etc | ||
packageDescription := """More information here: https://www.scala-lang.org/""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters