11 lines
224 B
Text
11 lines
224 B
Text
|
#!/bin/sh
|
||
|
pkg_ver="duck-ufetch"
|
||
|
|
||
|
pkg_install(){
|
||
|
wget -O "${prefix}"/usr/bin/ufetch https://git.hippoz.xyz/duck/repo/raw/branch/master
|
||
|
chmod +x "${prefix}"/usr/bin/ufetch
|
||
|
}
|
||
|
pkg_uninstall(){
|
||
|
rm "${prefix}"/usr/bin/ufetch
|
||
|
}
|