Sha256: b54106e66444250875e41a503da06fbf53c9c02450604611ec1864ec41092884

Contents?: true

Size: 395 Bytes

Versions: 4

Compression:

Stored size: 395 Bytes

Contents

#!/bin/bash

# Requires
#   basedevel.sh
#   user.sh

pacman -S --noconfirm wget

cd /tmp
wget 'https://aur.archlinux.org/packages/pa/packer/packer.tar.gz'
tar xzf packer.tar.gz

# makepkg should not be run as root
chown -R veewee:veewee packer
cd packer
su veewee -c 'makepkg -si --noconfirm'

# Clean up
cd ..
rm -rf packer*

# Now Arch User Repository packages can be installed using packer.

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
veewee-0.3.12 templates/archlinux-x86_64/aur.sh
veewee-0.3.11 templates/archlinux-x86_64/aur.sh
veewee-0.3.10 templates/archlinux-x86_64/aur.sh
veewee-0.3.9 templates/archlinux-x86_64/aur.sh