10 lines
371 B
Bash
10 lines
371 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
cargo build --target armv7-unknown-linux-gnueabihf --release
|
||
|
cp target/armv7-unknown-linux-gnueabihf/release/rusty_home rest2influx-armhf/usr/bin/rest2influx
|
||
|
dpkg-deb --root-owner-group --build rest2influx-armhf/
|
||
|
|
||
|
cargo build --release
|
||
|
cp target/release/rusty_home rest2influx-amd64/usr/bin/rest2influx
|
||
|
dpkg-deb --root-owner-group --build rest2influx-amd64/
|