sbt/project/packaging.scala

138 lines
5.8 KiB
Scala
Raw Normal View History

import sbt._
2011-12-21 17:21:16 +01:00
import com.typesafe.packager.Keys._
import sbt.Keys._
import com.typesafe.packager.PackagerPlugin._
object Packaging {
val sbtLaunchJarUrl = SettingKey[String]("sbt-launch-jar-url")
val sbtLaunchJarLocation = SettingKey[File]("sbt-launch-jar-location")
val sbtLaunchJar = TaskKey[File]("sbt-launch-jar", "Resolves SBT launch jar")
2011-12-21 17:21:16 +01:00
val settings: Seq[Setting[_]] = packagerSettings ++ Seq(
sbtLaunchJarUrl <<= sbtVersion apply ("http://typesafe.artifactoryonline.com/typesafe/ivy-releases/org.scala-tools.sbt/sbt-launch/"+_+"/sbt-launch.jar"),
sbtLaunchJarLocation <<= target apply (_ / "sbt-launch.jar"),
sbtLaunchJar <<= (sbtLaunchJarUrl, sbtLaunchJarLocation) map { (uri, file) =>
import dispatch._
if(!file.exists) {
val writer = new java.io.BufferedOutputStream(new java.io.FileOutputStream(file))
try Http(url(uri) >>> writer)
finally writer.close()
}
// TODO - GPG Trust validation.
file
},
2011-12-21 04:25:02 +01:00
// GENERAL LINUX PACKAGING STUFFS
maintainer := "Josh Suereth <joshua.suereth@typesafe.com>",
packageDescription := """Simple Build Tool
This script provides a native way to run the Simple Build Tool,
a build tool for Scala software, also called SBT.""",
linuxPackageMappings <+= (baseDirectory) map { bd =>
2011-12-21 17:21:16 +01:00
(packageMapping((bd / "sbt") -> "/usr/bin/sbt")
2011-12-21 04:25:02 +01:00
withUser "root" withGroup "root" withPerms "0755")
},
linuxPackageMappings <+= (sourceDirectory) map { bd =>
2011-12-21 17:21:16 +01:00
(packageMapping(
2011-12-21 04:25:02 +01:00
(bd / "linux" / "usr/share/man/man1/sbt.1") -> "/usr/share/man/man1/sbt.1.gz"
2011-12-21 17:21:16 +01:00
) withPerms "0644" gzipped) asDocs()
2011-12-21 04:25:02 +01:00
},
linuxPackageMappings <+= (sourceDirectory in Linux) map { bd =>
2011-12-21 17:21:16 +01:00
packageMapping(
2011-12-21 04:25:02 +01:00
(bd / "usr/share/doc/sbt/copyright") -> "/usr/share/doc/sbt/copyright"
2011-12-21 17:21:16 +01:00
) withPerms "0644" asDocs()
2011-12-21 04:25:02 +01:00
},
linuxPackageMappings <+= (sourceDirectory in Linux) map { bd =>
2011-12-21 17:21:16 +01:00
packageMapping(
(bd / "usr/share/doc/sbt") -> "/usr/share/doc/sbt"
) asDocs()
},
linuxPackageMappings <+= (sourceDirectory in Linux) map { bd =>
packageMapping(
(bd / "etc/sbt") -> "/etc/sbt"
) withConfig()
},
linuxPackageMappings <+= (sourceDirectory in Linux) map { bd =>
packageMapping(
(bd / "etc/sbt/sbtopts") -> "/etc/sbt/sbtopts"
) withPerms "0644" withConfig()
},
linuxPackageMappings <+= (sbtLaunchJar, sourceDirectory in Linux, sbtVersion) map { (jar, dir, v) =>
packageMapping(dir -> "/usr/lib/sbt",
dir -> ("/usr/lib/sbt/" + v),
jar -> ("/usr/lib/sbt/"+v+"/sbt-launch.jar")) withPerms "0755"
},
2011-12-21 04:25:02 +01:00
// DEBIAN SPECIFIC
name in Debian := "sbt",
version in Debian <<= (version, sbtVersion) apply { (v, sv) =>
sv + "-build-" + (v split "\\." map (_.toInt) dropWhile (_ == 0) map ("%02d" format _) mkString "")
},
debianPackageDependencies in Debian ++= Seq("curl", "java2-runtime", "bash (>= 2.05a-11)"),
debianPackageRecommends in Debian += "git",
linuxPackageMappings in Debian <+= (sourceDirectory) map { bd =>
2011-12-21 17:21:16 +01:00
(packageMapping(
2011-12-21 04:25:02 +01:00
(bd / "debian/changelog") -> "/usr/share/doc/sbt/changelog.gz"
2011-12-21 17:21:16 +01:00
) withUser "root" withGroup "root" withPerms "0644" gzipped) asDocs()
2011-12-21 04:25:02 +01:00
},
// RPM SPECIFIC
name in Rpm := "sbt",
version in Rpm <<= sbtVersion.identity,
rpmRelease := "1",
rpmVendor := "typesafe",
rpmUrl := Some("http://github.com/paulp/sbt-extras"),
rpmSummary := Some("Simple Build Tool for Scala-driven builds."),
rpmLicense := Some("BSD"),
// WINDOWS SPECIFIC
name in Windows := "sbt",
wixConfig <<= (sbtVersion) map { (sv) =>
val version = (sv split "\\.") match {
case Array(major,minor,bugfix, _*) => Seq(major,minor,bugfix, "1") mkString "."
case Array(major,minor) => Seq(major,minor,"0","1") mkString "."
case Array(major) => Seq(major,"0","0","1") mkString "."
}
(
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
<Product Id='ce07be71-510d-414a-92d4-dff47631848a'
Name='Simple Build Tool'
Language='1033'
Version={version}
Manufacturer='Typesafe, Inc.'
UpgradeCode='4552fb0e-e257-4dbd-9ecb-dba9dbacf424'>
<Package Description='Simple Build Tool launcher script.'
Comments='First attempt to create an SBT windows installer, bear with me.'
Manufacturer='Typesafe, Inc.'
InstallerVersion='200'
Compressed='yes' />
<Media Id='1' Cabinet='sbt.cab' EmbedCab='yes' />
<Directory Id='TARGETDIR' Name='SourceDir'>
<Directory Id='ProgramFilesFolder' Name='PFiles'>
<Directory Id='INSTALLDIR' Name='sbt'>
<Component Id='SbtLauncherScript' Guid='*'>
<File Id='sbt_bat' Name='sbt.bat' DiskId='1' Source='sbt.bat' />
<Environment Id="PATH" Name="PATH" Value="[INSTALLDIR]" Permanent="no" Part="last" Action="set" System="yes" />
</Component>
<Component Id='SbtLauncherJar' Guid='*'>
<File Id='sbt_launch_jar' Name='sbt-launch.jar' DiskId='1' Source='sbt-launch.jar' />
</Component>
</Directory>
</Directory>
</Directory>
<Feature Id='SbtLauncher' Title='Sbt Launcher Script' Level='1'>
<ComponentRef Id='SbtLauncherScript' />
<ComponentRef Id='SbtLauncherJar' />
</Feature>
</Product>
</Wix>)
},
//wixFile <<= sourceDirectory in Windows map (_ / "sbt.xml"),
mappings in packageMsi in Windows <+= sbtLaunchJar map { f => f -> "sbt-launch.jar" },
mappings in packageMsi in Windows <+= sourceDirectory in Windows map { d =>
(d / "sbt.bat") -> "sbt.bat" }
)
}