install script
This commit is contained in:
parent
4def3861a1
commit
e559ceaa85
2 changed files with 11 additions and 0 deletions
|
@ -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
4
install.sh
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
#!/bin/sh
|
||||||
|
for item in srcpkgs/*; do
|
||||||
|
cp -vr $item $HOME/void-packages/srcpkgs
|
||||||
|
done
|
Loading…
Add table
Reference in a new issue