mirror of https://github.com/sbt/sbt.git
Update description
This commit is contained in:
parent
b55237f1ad
commit
0e92999125
16
build.sbt
16
build.sbt
|
|
@ -46,10 +46,10 @@ val root = (project in file(".")).
|
||||||
file
|
file
|
||||||
},
|
},
|
||||||
// GENERAL LINUX PACKAGING STUFFS
|
// GENERAL LINUX PACKAGING STUFFS
|
||||||
maintainer := "Josh Suereth <joshua.suereth@typesafe.com>",
|
maintainer := "Eugene Yokota <eugene.yokota@typesafe.com>",
|
||||||
packageSummary := "Simple Build Tool for Scala-driven builds",
|
packageSummary := "sbt, the interactive build tool",
|
||||||
packageDescription := """This script provides a native way to run the Simple Build Tool,
|
packageDescription := """This script provides a native way to run sbt,
|
||||||
a build tool for Scala software, also called SBT.""",
|
a build tool for Scala and more.""",
|
||||||
// Here we remove the jar file and launch lib from the symlinks:
|
// Here we remove the jar file and launch lib from the symlinks:
|
||||||
linuxPackageSymlinks <<= linuxPackageSymlinks map { links =>
|
linuxPackageSymlinks <<= linuxPackageSymlinks map { links =>
|
||||||
for {
|
for {
|
||||||
|
|
@ -58,7 +58,7 @@ val root = (project in file(".")).
|
||||||
if !(link.destination endsWith "sbt-launch.jar")
|
if !(link.destination endsWith "sbt-launch.jar")
|
||||||
} yield link
|
} yield link
|
||||||
},
|
},
|
||||||
// DEBIAN SPECIFIC
|
// DEBIAN SPECIFIC
|
||||||
name in Debian := "sbt",
|
name in Debian := "sbt",
|
||||||
version in Debian <<= sbtVersion,
|
version in Debian <<= sbtVersion,
|
||||||
debianPackageDependencies in Debian ++= Seq("java6-runtime-headless", "bash (>= 2.05a-11)"),
|
debianPackageDependencies in Debian ++= Seq("java6-runtime-headless", "bash (>= 2.05a-11)"),
|
||||||
|
|
@ -74,7 +74,7 @@ val root = (project in file(".")).
|
||||||
version in Rpm <<= sbtVersion apply { sv => (sv split "[^\\d]" filterNot (_.isEmpty) mkString ".") },
|
version in Rpm <<= sbtVersion apply { sv => (sv split "[^\\d]" filterNot (_.isEmpty) mkString ".") },
|
||||||
rpmRelease := "1",
|
rpmRelease := "1",
|
||||||
rpmVendor := "typesafe",
|
rpmVendor := "typesafe",
|
||||||
rpmUrl := Some("http://github.com/paulp/sbt-extras"),
|
rpmUrl := Some("http://github.com/sbt/sbt-launcher-package"),
|
||||||
rpmLicense := Some("BSD"),
|
rpmLicense := Some("BSD"),
|
||||||
rpmRequirements :=Seq("java","java-devel","jpackage-utils"),
|
rpmRequirements :=Seq("java","java-devel","jpackage-utils"),
|
||||||
rpmProvides := Seq("sbt"),
|
rpmProvides := Seq("sbt"),
|
||||||
|
|
@ -89,8 +89,8 @@ val root = (project in file(".")).
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
maintainer in Windows := "Typesafe, Inc.",
|
maintainer in Windows := "Typesafe, Inc.",
|
||||||
packageSummary in Windows := "Simple Build Tool",
|
packageSummary in Windows := "sbt",
|
||||||
packageDescription in Windows := "THE reactive build tool.",
|
packageDescription in Windows := "The interactive build tool.",
|
||||||
wixProductId := "ce07be71-510d-414a-92d4-dff47631848a",
|
wixProductId := "ce07be71-510d-414a-92d4-dff47631848a",
|
||||||
wixProductUpgradeId := "4552fb0e-e257-4dbd-9ecb-dba9dbacf424",
|
wixProductUpgradeId := "4552fb0e-e257-4dbd-9ecb-dba9dbacf424",
|
||||||
javacOptions := Seq("-source", "1.5", "-target", "1.5"),
|
javacOptions := Seq("-source", "1.5", "-target", "1.5"),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue