mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-09 17:10:17 +00:00
33 lines
578 B
Bash
Executable File
33 lines
578 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
|
|
|
VERSION="2"
|
|
|
|
install -D -m 0644 ./trezor.rules ./lib/udev/rules.d/52-trezor-extension.rules
|
|
|
|
NAME=trezor-udev
|
|
|
|
tar cfj $NAME-$VERSION.tar.bz2 ./lib
|
|
|
|
for TYPE in "deb" "rpm"; do
|
|
fpm \
|
|
-s tar \
|
|
-t $TYPE \
|
|
-a all \
|
|
-n $NAME \
|
|
-v $VERSION \
|
|
--license "LGPL-3.0" \
|
|
--vendor "SatoshiLabs" \
|
|
--description "Udev rules for Trezor" \
|
|
--maintainer "SatoshiLabs <stick@satoshilabs.com>" \
|
|
--url "https://trezor.io/" \
|
|
--category "Productivity/Security" \
|
|
$NAME-$VERSION.tar.bz2
|
|
done
|
|
|
|
rm $NAME-$VERSION.tar.bz2
|
|
rm -rf ./lib
|