Como executar o Skype após instalá-lo usando o pacote AUR no Arch Linux

0

Eu instalei o Skype usando o pacote AUR seguindo estas etapas:

wget https://aur.archlinux.org/cgit/aur.git/snapshot/skypeforlinux-bin.tar.gz
tar zxf skypeforlinux-bin.tar.gz
cd skypeforlinux-bin
makepkg -s

E a saída foi:

==> Making package: skypeforlinux-bin 8.6.76.56247-1 (Fri Sep  8 10:11:48 -03 2017)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
  -> Found skypeforlinux_8.6.76.56247_amd64.deb
==> Validating source files with sha256sums...
    skypeforlinux_8.6.76.56247_amd64.deb ... Passed
==> Extracting sources...
  -> Extracting skypeforlinux_8.6.76.56247_amd64.deb with bsdtar
==> Removing existing $pkgdir/ directory...
==> Entering fakeroot environment...
==> Starting package()...
==> Tidying install...
  -> Removing libtool files...
  -> Purging unwanted files...
  -> Removing static library files...
  -> Stripping unneeded symbols from binaries and libraries...
  -> Compressing man and info pages...
==> Checking for packaging issue...
==> Creating package "skypeforlinux-bin"...
  -> Generating .PKGINFO file...
  -> Generating .BUILDINFO file...
  -> Generating .MTREE file...
  -> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: skypeforlinux-bin 8.6.76.56247-1 (Fri Sep  8 10:13:39 -03 2017)

Agora, como posso executar o Skype? porque eu tentei procurar o comando skype ou similar, mas nada apareceu.

Você poderia me ajudar? Muito obrigado!

    
por majitux 08.09.2017 / 16:21

1 resposta

3

Você criou o pacote ( makepkg -s ), mas não o instalou, então obviamente não pode executá-lo.

pacman -Q skypeforlinux-bin confirmará que não está instalado.

A saída makepkg também torna isso evidente:

==> Finished making: skypeforlinux-bin 8.6.76.56247-1 (Fri Sep 8 10:13:39 -03 2017)

Como a página wiki no AUR deixa claro, você precisa passar makepkg -i para instalar seu pacote construído.

Neste ponto, você pode reconstruir ou simplificar, desde que você ainda tenha o pacote construído, apenas use pacman:

sudo pacman -U $package_name.pkg.tar.xz
    
por 08.09.2017 / 20:58