darkhz / bluetuith

A TUI bluetooth manager for Linux.
MIT License
858 stars 23 forks source link

arch install error #1

Closed se7en-x230 closed 2 years ago

se7en-x230 commented 2 years ago

go installs but bluetuith command not found and installing from the release

error: missing package metadata in Downloads/bluetuith_0.0.1_Linux_x86_64.tar.gz error: 'Downloads/bluetuith_0.0.1_Linux_x86_64.tar.gz': invalid or corrupted package

darkhz commented 2 years ago

What program are you using to extract the binary from the tar ball?

I was able to extract the binary using tar: tar -xvzf bluetuith_0.0.1_Linux_x86_64.tar.gz

and by using the Archive Manager application.

As for installing via go, ensure that your $HOME/go/bin is in your $PATH.

se7en-x230 commented 2 years ago

I used pacman.

pacman -U bluetuith_0.0.1_Linux_x86_64 That gives me the missing metadata error.

darkhz commented 2 years ago

You can't use pacman to extract and install from the archive file, it is merely a tarball. Use tar or any archive program to extract and use it.

Alternatively, since the package is now in the AUR, you can use the following command to install it: pacman -S bluetuith-bin

se7en-x230 commented 2 years ago

Nice one. Thanks