-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add minimal debian source structure
In the uarch toolchain image (`cartesi/toolchain:0.17.0-rv64ima-lp64`), run the following commands: ``` apt build-dep . -y --no-install-recommends dch -v `make -s version` "Release `make -s version`" dpkg-buildpackage ``` Packages are created on the parent directory.
- Loading branch information
Showing
7 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.debhelper/ | ||
cartesi-machine-emulator-dev.substvars | ||
cartesi-machine-emulator-dev/ | ||
cartesi-machine-emulator-docs.docs | ||
cartesi-machine-emulator0.substvars | ||
cartesi-machine-emulator0/ | ||
debhelper-build-stamp | ||
files | ||
tmp/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
usr/bin/* | ||
usr/include/* | ||
usr/lib/*.a | ||
usr/share/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
usr/lib/*.so | ||
usr/lib/lua/5.4/*.so | ||
usr/lib/lua/5.4/cartesi/*.so |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
cartesi-machine-emulator (0.17.0) UNRELEASED; urgency=medium | ||
|
||
* Initial release. | ||
|
||
-- root <root@unknown> Thu, 25 Jul 2024 14:09:11 +0000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
Source: cartesi-machine-emulator | ||
Section: libs | ||
Priority: optional | ||
Maintainer: root <root@unknown> | ||
Rules-Requires-Root: no | ||
Build-Depends: | ||
debhelper-compat (= 13), | ||
devscripts, | ||
libboost1.81-dev, | ||
liblua5.4-dev, | ||
libslirp-dev, | ||
wget, | ||
xxd, | ||
Standards-Version: 4.6.2 | ||
Homepage: https://cartesi.io | ||
#Vcs-Browser: https://salsa.debian.org/debian/cartesi-machine-emulator | ||
#Vcs-Git: https://salsa.debian.org/debian/cartesi-machine-emulator.git | ||
|
||
Package: cartesi-machine-emulator-dev | ||
Section: libdevel | ||
Architecture: any | ||
Multi-Arch: same | ||
Depends: | ||
cartesi-machine-emulator0 (= ${binary:Version}), | ||
lua5.4, | ||
${misc:Depends}, | ||
Description: <insert up to 60 chars description> | ||
<Insert long description, indented with spaces.> | ||
|
||
Package: cartesi-machine-emulator0 | ||
Architecture: any | ||
Multi-Arch: same | ||
Depends: | ||
${shlibs:Depends}, | ||
${misc:Depends}, | ||
Description: <insert up to 60 chars description> | ||
<Insert long description, indented with spaces.> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/make -f | ||
|
||
export DEV_ENV_HAS_TOOLCHAIN=yes | ||
|
||
%: | ||
dh $@ | ||
|
||
override_dh_auto_test: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.0 (native) |