Compare commits
No commits in common. "master" and "2910d115084198730b1873bf43dfb887ec832460" have entirely different histories.
master
...
2910d11508
10
.SRCINFO
10
.SRCINFO
|
@ -1,11 +1,13 @@
|
||||||
pkgbase = onlykey-gui
|
pkgbase = onlykey
|
||||||
pkgdesc = OnlyKey Chrome Desktop App
|
pkgdesc = OnlyKey Chrome Desktop App
|
||||||
pkgver = 5.3.3
|
pkgver = 5.3.3
|
||||||
pkgrel = 2
|
pkgrel = 1
|
||||||
url = https://onlykey.io/
|
url = https://onlykey.io/
|
||||||
arch = x86_64
|
arch = x86_64
|
||||||
license = Apache
|
license = custom
|
||||||
source = https://github.com/trustcrypto/OnlyKey-App/releases/download/v5.3.3/OnlyKey_5.3.3_amd64.deb
|
source = https://github.com/trustcrypto/OnlyKey-App/releases/download/v5.3.3/OnlyKey_5.3.3_amd64.deb
|
||||||
|
source = 49-onlykey.rules
|
||||||
sha256sums = 10611139e7cb601e49453dd9297aa8be767956c8ff37ebebeae1ac9076008e63
|
sha256sums = 10611139e7cb601e49453dd9297aa8be767956c8ff37ebebeae1ac9076008e63
|
||||||
|
sha256sums = 6bb0a54748ec6ce1a1186b41f45a6bfc1363998c1a88722a8f1518c3278aabef
|
||||||
|
|
||||||
pkgname = onlykey-gui
|
pkgname = onlykey
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
# UDEV Rules for OnlyKey, https://docs.crp.to/linux.html
|
||||||
|
#
|
||||||
|
# This file must be placed at:
|
||||||
|
#
|
||||||
|
# /etc/udev/rules.d/49-onlykey.rules (preferred location)
|
||||||
|
# or
|
||||||
|
# /lib/udev/rules.d/49-onlykey.rules (req'd on some broken systems)
|
||||||
|
#
|
||||||
|
# To install, type this command in a terminal:
|
||||||
|
# sudo cp 49-onlykey.rules /etc/udev/rules.d/49-onlykey.rules
|
||||||
|
#
|
||||||
|
# After this file is installed, physically unplug and reconnect OnlyKey.
|
||||||
|
#
|
||||||
|
ATTRS{idVendor}=="1d50", ATTRS{idProduct}=="60fc", ENV{ID_MM_DEVICE_IGNORE}="1"
|
||||||
|
ATTRS{idVendor}=="1d50", ATTRS{idProduct}=="60fc", ENV{MTP_NO_PROBE}="1"
|
||||||
|
SUBSYSTEMS=="usb", ATTRS{idVendor}=="1d50", ATTRS{idProduct}=="60fc", MODE:="0666"
|
||||||
|
KERNEL=="ttyACM*", ATTRS{idVendor}=="1d50", ATTRS{idProduct}=="60fc", MODE:="0666"
|
||||||
|
#
|
||||||
|
# If you share your linux system with other users, or just don't like the
|
||||||
|
# idea of write permission for everybody, you can replace MODE:="0666" with
|
||||||
|
# OWNER:="yourusername" to create the device owned by you, or with
|
||||||
|
# GROUP:="somegroupname" and mange access using standard unix groups.
|
||||||
|
#
|
||||||
|
# One requirement of TOTP (Time-based One-time Password) is having the correct
|
||||||
|
# time. If OnlyKey is used on a system where the OnlyKey app is not running it
|
||||||
|
# will display “NOTSET” instead of the OTP code. Because OnlyKey has no battery
|
||||||
|
# it requires an app to send it the correct time to be able to generate TOTP
|
||||||
|
# codes. If you have OnlyKey command-line utility installed, adding the
|
||||||
|
# following will automatically set the current time on OnlyKey every time you
|
||||||
|
# plug it: RUN+="/usr/local/bin/onlykey-cli settime"
|
||||||
|
#
|
||||||
|
# SUBSYSTEMS=="usb", ATTRS{idVendor}=="1d50", ATTRS{idProduct}=="60fc", MODE:="0660", GROUP:="onlykey", RUN+="/usr/local/bin/onlykey-cli settime"
|
||||||
|
# KERNEL=="ttyACM*", ATTRS{idVendor}=="1d50", ATTRS{idProduct}=="60fc", MODE:="0660", GROUP:="onlykey", RUN+="/usr/local/bin/onlykey-cli settime"
|
||||||
|
#
|
20
PKGBUILD
20
PKGBUILD
|
@ -1,16 +1,22 @@
|
||||||
# Maintainer: Kiril Vladimiroff <kiril@vladimiroff.org>
|
# Maintainer: Kiril Vladimiroff <kiril@vladimiroff.org>
|
||||||
# Contributor: David Thurstenson <thurstylark@gmail.com>
|
|
||||||
|
|
||||||
pkgname=onlykey-gui
|
pkgname=onlykey
|
||||||
pkgver=5.3.3
|
pkgver=5.3.3
|
||||||
pkgrel=2
|
pkgrel=1
|
||||||
pkgdesc="OnlyKey Chrome Desktop App"
|
pkgdesc="OnlyKey Chrome Desktop App"
|
||||||
arch=('x86_64')
|
arch=('x86_64')
|
||||||
url="https://onlykey.io/"
|
url="https://onlykey.io/"
|
||||||
license=('Apache')
|
license=('custom')
|
||||||
source=("https://github.com/trustcrypto/OnlyKey-App/releases/download/v${pkgver}/OnlyKey_${pkgver}_amd64.deb")
|
source=("https://github.com/trustcrypto/OnlyKey-App/releases/download/v${pkgver}/OnlyKey_${pkgver}_amd64.deb"
|
||||||
sha256sums=('10611139e7cb601e49453dd9297aa8be767956c8ff37ebebeae1ac9076008e63')
|
"49-onlykey.rules")
|
||||||
|
sha256sums=('10611139e7cb601e49453dd9297aa8be767956c8ff37ebebeae1ac9076008e63'
|
||||||
|
'6bb0a54748ec6ce1a1186b41f45a6bfc1363998c1a88722a8f1518c3278aabef')
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
bsdtar -C "${pkgdir}" -xf "${srcdir}/data.tar.xz"
|
bsdtar -O -xf "OnlyKey_${pkgver}"*.deb data.tar.xz | bsdtar -C "${pkgdir}" -xJf -
|
||||||
|
|
||||||
|
find "${pkgdir}" -type d -exec chmod 755 {} +
|
||||||
|
chmod 755 "${pkgdir}"/usr/share/applications/OnlyKey.desktop
|
||||||
|
|
||||||
|
install -Dm 644 49-onlykey.rules "${pkgdir}/etc/udev/rules.d/49-onlykey.rules"
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
post_install() {
|
||||||
|
udevadm control --reload
|
||||||
|
}
|
||||||
|
|
||||||
|
post_upgrade() {
|
||||||
|
udevadm control --reload
|
||||||
|
}
|
||||||
|
|
||||||
|
post_remove() {
|
||||||
|
udevadm control --reload
|
||||||
|
}
|
Loading…
Reference in New Issue