install script

This commit is contained in:
Lilian Jónsdóttir 2023-11-07 15:23:51 -08:00
parent 4def3861a1
commit e559ceaa85
2 changed files with 11 additions and 0 deletions

View file

@ -3,3 +3,10 @@
Void linux package templates I've created that probably wouldn't get accepted into the repos. Void linux package templates I've created that probably wouldn't get accepted into the repos.
(DIY VUR?) (DIY VUR?)
## install
Run `install.sh` or do it manually like
```sh
for item in srcpkgs/*; do cp -r $item $HOME/void-packages/srcpkgs; done
```

4
install.sh Normal file
View file

@ -0,0 +1,4 @@
#!/bin/sh
for item in srcpkgs/*; do
cp -vr $item $HOME/void-packages/srcpkgs
done