modifications so that RPM will actually build. A few areas I thoguht optional are mandatory.

This commit is contained in:
Josh Suereth 2011-12-21 09:34:47 -05:00
parent 221667426c
commit c462aad953
1 changed files with 4 additions and 2 deletions

View File

@ -49,8 +49,10 @@ object DebianPkg {
name in Rpm := "sbt",
version in Rpm <<= sbtVersion.identity,
rpmRelease := "1",
rpmVendor := "Typesafe, Inc.",
rpmVendor := "typesafe",
rpmOs := "i386",
rpmUrl := Some("http://github.com/paulp/sbt-extras")
rpmUrl := Some("http://github.com/paulp/sbt-extras"),
rpmSummary := Some("Simple Build Tool for Scala-driven builds."),
rpmLicense := Some("BSD")
)
}