1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-12 06:54:23 -04:00
v2fly/tools/build/build.go
2015-10-18 11:51:21 +02:00

87 lines
2.1 KiB
Go

package main
import (
"flag"
"fmt"
"os"
"path/filepath"
"runtime"
"github.com/v2ray/v2ray-core/tools/git"
)
var (
targetOS = flag.String("os", runtime.GOOS, "Target OS of this build.")
targetArch = flag.String("arch", runtime.GOARCH, "Target CPU arch of this build.")
archive = flag.Bool("zip", false, "Whether to make an archive of files or not.")
)
func createTargetDirectory(version string, goOS GoOS, goArch GoArch) (string, error) {
suffix := getSuffix(goOS, goArch)
GOPATH := os.Getenv("GOPATH")
targetDir := filepath.Join(GOPATH, "bin", "v2ray-"+version+suffix)
if version != "custom" {
os.RemoveAll(targetDir)
}
err := os.MkdirAll(targetDir, os.ModeDir|0777)
return targetDir, err
}
func getTargetFile(goOS GoOS) string {
suffix := ""
if goOS == Windows {
suffix += ".exe"
}
return "v2ray" + suffix
}
func main() {
flag.Parse()
v2rayOS := parseOS(*targetOS)
v2rayArch := parseArch(*targetArch)
version, err := git.RepoVersionHead()
if version == git.VersionUndefined {
version = "custom"
}
if err != nil {
fmt.Println("Unable to detect V2Ray version: " + err.Error())
return
}
fmt.Printf("Building V2Ray (%s) for %s %s\n", version, v2rayOS, v2rayArch)
targetDir, err := createTargetDirectory(version, v2rayOS, v2rayArch)
if err != nil {
fmt.Println("Unable to create directory " + targetDir + ": " + err.Error())
}
targetFile := getTargetFile(v2rayOS)
err = buildV2Ray(filepath.Join(targetDir, targetFile), version, v2rayOS, v2rayArch)
if err != nil {
fmt.Println("Unable to build V2Ray: " + err.Error())
}
err = copyConfigFiles(targetDir, v2rayOS)
if err != nil {
fmt.Println("Unable to copy config files: " + err.Error())
}
if *archive {
GOPATH := os.Getenv("GOPATH")
binPath := filepath.Join(GOPATH, "bin")
err := os.Chdir(binPath)
if err != nil {
fmt.Printf("Unable to switch to directory (%s): %v\n", binPath, err)
}
suffix := getSuffix(v2rayOS, v2rayArch)
zipFile := "v2ray" + suffix + ".zip"
root := filepath.Base(targetDir)
err = zipFolder(root, zipFile)
if err != nil {
fmt.Println("Unable to create archive (%s): %v\n", zipFile, err)
}
}
}