mirror of
https://github.com/KarolS/millfork.git
synced 2024-10-31 14:04:58 +00:00
80 lines
2.9 KiB
Scala
80 lines
2.9 KiB
Scala
name := "millfork"
|
|
|
|
version := "0.3.15-SNAPSHOT"
|
|
|
|
scalaVersion := "2.12.10"
|
|
|
|
resolvers += Resolver.mavenLocal
|
|
|
|
libraryDependencies += "com.lihaoyi" %% "fastparse" % "1.0.0"
|
|
|
|
libraryDependencies += "org.apache.commons" % "commons-configuration2" % "2.2"
|
|
|
|
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.8" % "test"
|
|
|
|
libraryDependencies += "com.codingrodent.microprocessor" % "Z80Processor" % "2.0.2" % "test"
|
|
|
|
// see: https://github.com/NeatMonster/Intel8086
|
|
libraryDependencies += "NeatMonster" % "Intel8086" % "1.0" % "test" from "https://github.com/NeatMonster/Intel8086/raw/master/IBMPC.jar"
|
|
|
|
// these three are not in Maven Central or any other public repo
|
|
// get them from the following links or just build millfork without tests:
|
|
// https://github.com/sethm/symon/tree/71905fdb1998ee4f142260879504bc46cf27648f
|
|
// https://github.com/andrew-hoffman/halfnes/tree/061
|
|
// https://github.com/trekawek/coffee-gb/tree/coffee-gb-1.0.0
|
|
// https://github.com/sorenroug/osnine-java/tree/1b4e059c5886fe01e8901c70684f7eedefe65010
|
|
|
|
libraryDependencies += "com.loomcom.symon" % "symon" % "1.3.0-SNAPSHOT" % "test"
|
|
|
|
libraryDependencies += "com.grapeshot" % "halfnes" % "061" % "test"
|
|
|
|
libraryDependencies += "eu.rekawek.coffeegb" % "coffee-gb" % "1.0.0" % "test"
|
|
|
|
libraryDependencies += "roug.org.osnine" % "osnine-core" % "1.0-SNAPSHOT" % "test"
|
|
|
|
mainClass in Compile := Some("millfork.Main")
|
|
|
|
assemblyJarName := "millfork.jar"
|
|
|
|
lazy val root = (project in file(".")).
|
|
enablePlugins(BuildInfoPlugin).
|
|
settings(
|
|
buildInfoKeys := Seq[BuildInfoKey](name, version, scalaVersion, sbtVersion),
|
|
buildInfoPackage := "millfork.buildinfo"
|
|
)
|
|
|
|
import sbtassembly.AssemblyKeys
|
|
|
|
val releaseDist = TaskKey[File]("release-dist", "Creates a distributable zip file.")
|
|
|
|
releaseDist := {
|
|
val jar = AssemblyKeys.assembly.value
|
|
val base = Keys.baseDirectory.value
|
|
val target = Keys.target.value
|
|
val name = Keys.name.value
|
|
val version = Keys.version.value
|
|
val distDir = target / (name + "-" + version)
|
|
val releasesDir = base / "releases"
|
|
val zipFile = releasesDir / (name + "-" + version + ".zip")
|
|
IO.delete(zipFile)
|
|
IO.delete(distDir)
|
|
IO.createDirectory(releasesDir)
|
|
IO.createDirectory(distDir)
|
|
IO.copyFile(jar, distDir / jar.name)
|
|
IO.copyFile(base / "LICENSE", distDir / "LICENSE")
|
|
IO.copyFile(base / "src/3rd-party-licenses.txt", distDir / "3rd-party-licenses.txt")
|
|
IO.copyFile(base / "CHANGELOG.md", distDir / "CHANGELOG.md")
|
|
IO.copyFile(base / "README.md", distDir / "README.md")
|
|
IO.copyFile(base / "COMPILING.md", distDir / "COMPILING.md")
|
|
def copyDir(name: String): Unit = {
|
|
IO.createDirectory(distDir / name)
|
|
IO.copyDirectory(base / name, distDir / name)
|
|
}
|
|
copyDir("include")
|
|
copyDir("docs")
|
|
def entries(f: File): List[File] = f :: (if (f.isDirectory) IO.listFiles(f).toList.flatMap(entries) else Nil)
|
|
IO.zip(entries(distDir).map(d => (d, d.getAbsolutePath.substring(distDir.getParent.length + 1))), zipFile)
|
|
IO.delete(distDir)
|
|
zipFile
|
|
}
|