-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ff25927
commit 07834f2
Showing
3 changed files
with
38 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 |
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,10 @@ | ||
Source: glonax | ||
Section: restricted/base | ||
Priority: optional | ||
Maintainer: Laixer Equipment B.V. <info@laixer.com> | ||
Standards-Version: 3.0.1 | ||
Build-Depends: debhelper (>= 4) | ||
|
||
Package: glonax | ||
Architecture: any | ||
Description: Glonax heavy machine controller |
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,27 @@ | ||
#!/usr/bin/make -f | ||
|
||
clean: | ||
cargo clean | ||
|
||
build: | ||
cargo build --release | ||
|
||
binary: | ||
dh_clean | ||
mkdir -p debian/glonax/usr/local/bin | ||
cp ./target/release/glonax-proxyd debian/glonax/usr/local/bin | ||
cp ./target/release/glonax-csim debian/glonax/usr/local/bin | ||
cp ./target/release/glonax-ecud debian/glonax/usr/local/bin | ||
cp ./target/release/glonax-gnssd debian/glonax/usr/local/bin | ||
cp ./target/release/glonax-input debian/glonax/usr/local/bin | ||
cp ./target/release/glonax-netctl debian/glonax/usr/local/bin | ||
cp ./target/release/glonax-agent debian/glonax/usr/local/bin | ||
cp ./target/release/glonax-proxyd debian/glonax/usr/local/bin | ||
cp ./contrib/systemd/glonax-proxy.service debian/glonax-proxy.service | ||
cp ./contrib/systemd/glonax-agent.service debian/glonax-agent.service | ||
dh_installsystemd --name=glonax-proxy | ||
dh_installsystemd --name=glonax-agent | ||
dh_installdeb | ||
dh_gencontrol | ||
dh_md5sums | ||
dh_builddeb |