You've already forked linux-packaging-mono
acceptance-tests
data
debian
docs
external
Newtonsoft.Json
api-doc-tools
api-snapshot
aspnetwebstack
bdwgc
binary-reference-assemblies
bockbuild
boringssl
cecil
cecil-legacy
corefx
corert
helix-binaries
ikdasm
ikvm
illinker-test-assets
linker
llvm-project
clang
clang-tools-extra
compiler-rt
libcxx
libcxxabi
libunwind
lld
lldb
llvm
bindings
cmake
docs
examples
include
lib
projects
resources
runtimes
scripts
ci
debian
.gitattributes
.gitignore
build-external-llvm.bat
package.sh
run-jenkins-linux.sh
run-jenkins-osx.sh
run-jenkins-windows.bat
run-jenkins-windows.sh
run-jenkins.sh
setup-vs-msvcbuild-env.bat
setup-windows-env.bat
test
tools
unittests
utils
.arcconfig
.clang-format
.clang-tidy
.gitattributes
.gitignore
CMakeLists.txt
CODE_OWNERS.TXT
CREDITS.TXT
LICENSE.TXT
LLVMBuild.txt
README.txt
RELEASE_TESTERS.TXT
configure
llvm.spec.in
openmp
polly
nuget-buildtasks
nunit-lite
roslyn-binaries
rx
xunit-binaries
how-to-bump-roslyn-binaries.md
ikvm-native
llvm
m4
man
mcs
mk
mono
msvc
netcore
po
runtime
samples
scripts
support
tools
COPYING.LIB
LICENSE
Makefile.am
Makefile.in
NEWS
README.md
acinclude.m4
aclocal.m4
autogen.sh
code_of_conduct.md
compile
config.guess
config.h.in
config.rpath
config.sub
configure.REMOVED.git-id
configure.ac.REMOVED.git-id
depcomp
install-sh
ltmain.sh.REMOVED.git-id
missing
mkinstalldirs
mono-uninstalled.pc.in
test-driver
winconfig.h
24 lines
363 B
Bash
24 lines
363 B
Bash
![]() |
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
# Requires packages:
|
||
|
# devscripts cmake ninja git
|
||
|
|
||
|
TOP_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/../../" && pwd )"
|
||
|
|
||
|
echo "MAKING DEB"
|
||
|
|
||
|
mkdir -p $TOP_DIR/build/mono-llvm-6.0
|
||
|
pushd $TOP_DIR/build/mono-llvm-6.0
|
||
|
|
||
|
cp -r $TOP_DIR/scripts/ci/debian debian
|
||
|
|
||
|
dpkg-buildpackage -d -us -uc
|
||
|
|
||
|
popd # $TOP_DIR/build/mono-llvm-6.0
|
||
|
|
||
|
echo "DONE"
|
||
|
|
||
|
|