2016-08-02 96 views
0

我正在嘗試構建一個debian軟件包,並使用sbt-native-packager對其進行簽名和發佈。簽署併發布debian軟件包

是否有如何使用GPG ID簽名debian軟件包的示例?

這裏是我做的到現在爲止:

name := """play-scala-app-name""" 

lazy val root = (project in file(".")).enablePlugins(PlayScala, DebianPlugin) 

scalaVersion := "2.11.7" 

libraryDependencies ++= Seq(
    jdbc, 
    cache, 
    ws, 
    "org.scalatestplus.play" %% "scalatestplus-play" % "1.5.0-RC1" % Test, 
    "org.mockito" % "mockito-core" % "1.10.19" 
) 

resolvers += "scalaz-bintray" at "https://dl.bintray.com/scalaz/releases" 

name in Debian := "app-name" 

version in Debian := "1.0" 

maintainer in Debian := "maintainer name <[email protected]>" 

packageSummary := "app summary" 

packageDescription := """app description""" 

publishTo := Some("Debian repo" at "https://repo") 

credentials += Credentials("Debian repo Manager", "my.artifact.repo.net", "admin", "admin123") 

// how to add code to sign the package ? 

然後,我會推出sbt clean debian:packageBin debian:publish

回答

0

本機打包程序提供了調用dpkg-sig命令來簽署包的方法。此命令應該訣竅

sbt debianSign 

您需要安裝dpkg-sig