add additional symlinks to deb package, remove setup step from package_tool
This commit is contained in:
parent
96a45fb44f
commit
eb693a4297
2 changed files with 6 additions and 6 deletions
|
@ -4,12 +4,12 @@
|
||||||
|
|
||||||
"package_name": "dotnet",
|
"package_name": "dotnet",
|
||||||
|
|
||||||
"short_description": "debian package for dotnet cli",
|
"short_description": "NOT FINAL debian package for dotnet cli",
|
||||||
"long_description": "This package restores, compiles, and publishes.",
|
"long_description": "NOT FINAL This package restores, compiles, and publishes.",
|
||||||
"homepage": "https://dotnet.github.io/core",
|
"homepage": "https://dotnet.github.io/core",
|
||||||
|
|
||||||
"release":{
|
"release":{
|
||||||
"package_version":"0.2",
|
"package_version":"0.3",
|
||||||
"package_revision":"1",
|
"package_revision":"1",
|
||||||
"urgency" : "low",
|
"urgency" : "low",
|
||||||
"changelog_message" : "Bootstrap loop package"
|
"changelog_message" : "Bootstrap loop package"
|
||||||
|
@ -34,7 +34,9 @@
|
||||||
"symlinks": {
|
"symlinks": {
|
||||||
"dotnet" : "usr/bin/dotnet",
|
"dotnet" : "usr/bin/dotnet",
|
||||||
"dotnet-compile" : "usr/bin/dotnet-compile",
|
"dotnet-compile" : "usr/bin/dotnet-compile",
|
||||||
|
"dotnet-compile-csc" : "usr/bin/dotnet-compile-csc",
|
||||||
"dotnet-publish" : "usr/bin/dotnet-publish",
|
"dotnet-publish" : "usr/bin/dotnet-publish",
|
||||||
"dotnet-restore" : "usr/bin/dotnet-restore"
|
"dotnet-restore" : "usr/bin/dotnet-restore",
|
||||||
|
"resgen" : "usr/bin/resgen"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,8 +6,6 @@
|
||||||
|
|
||||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
|
|
||||||
source $SCRIPT_DIR/setup/build_setup.sh
|
|
||||||
|
|
||||||
## Load Functions ##
|
## Load Functions ##
|
||||||
source $SCRIPT_DIR/scripts/debian_build_lib.sh
|
source $SCRIPT_DIR/scripts/debian_build_lib.sh
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue