From 0e929991251176beeb4b6800fdf903871bc1f6af Mon Sep 17 00:00:00 2001 From: Eugene Yokota Date: Tue, 11 Aug 2015 01:34:13 -0400 Subject: [PATCH] Update description --- build.sbt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/build.sbt b/build.sbt index 657a11d59..ba77b8769 100644 --- a/build.sbt +++ b/build.sbt @@ -46,10 +46,10 @@ val root = (project in file(".")). file }, // GENERAL LINUX PACKAGING STUFFS - maintainer := "Josh Suereth ", - packageSummary := "Simple Build Tool for Scala-driven builds", - packageDescription := """This script provides a native way to run the Simple Build Tool, - a build tool for Scala software, also called SBT.""", + maintainer := "Eugene Yokota ", + packageSummary := "sbt, the interactive build tool", + packageDescription := """This script provides a native way to run sbt, + a build tool for Scala and more.""", // Here we remove the jar file and launch lib from the symlinks: linuxPackageSymlinks <<= linuxPackageSymlinks map { links => for { @@ -58,7 +58,7 @@ val root = (project in file(".")). if !(link.destination endsWith "sbt-launch.jar") } yield link }, - // DEBIAN SPECIFIC + // DEBIAN SPECIFIC name in Debian := "sbt", version in Debian <<= sbtVersion, 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 ".") }, rpmRelease := "1", rpmVendor := "typesafe", - rpmUrl := Some("http://github.com/paulp/sbt-extras"), + rpmUrl := Some("http://github.com/sbt/sbt-launcher-package"), rpmLicense := Some("BSD"), rpmRequirements :=Seq("java","java-devel","jpackage-utils"), rpmProvides := Seq("sbt"), @@ -89,8 +89,8 @@ val root = (project in file(".")). } }, maintainer in Windows := "Typesafe, Inc.", - packageSummary in Windows := "Simple Build Tool", - packageDescription in Windows := "THE reactive build tool.", + packageSummary in Windows := "sbt", + packageDescription in Windows := "The interactive build tool.", wixProductId := "ce07be71-510d-414a-92d4-dff47631848a", wixProductUpgradeId := "4552fb0e-e257-4dbd-9ecb-dba9dbacf424", javacOptions := Seq("-source", "1.5", "-target", "1.5"),