Fish: remove some unused functions

This commit is contained in:
Phantop 2020-08-22 00:19:22 -04:00
parent 238fb20262
commit c89621e161
5 changed files with 13 additions and 41 deletions

View File

@ -1,14 +0,0 @@
function build
s printf ''
gp
./autogen.sh --prefix=/usr
./configure --prefix=/usr
cmake -DCMAKE_INSTALL_PREFIX=/usr .
s printf ''
make -j8
s make install
meson --prefix=/usr build
s printf ''
ninja -C build
sudo ninja -C build install
end

View File

@ -1,8 +0,0 @@
# Defined in /tmp/fish.0ygHEX/libpath.fish @ line 1
function libpath
if test $argv
export LD_LIBRARY_PATH=$argv LIBGL_DRIVERS_PATH=$argv EGL_DRIVERS_PATH=$argv mesa_glthread=true AMD_DEBUG=nohyperz
else
export LD_LIBRARY_PATH=(pwd) LIBGL_DRIVERS_PATH=(pwd) EGL_DRIVERS_PATH=(pwd) mesa_glthread=true AMD_DEBUG=nohyperz
end
end

View File

@ -1,9 +0,0 @@
function xcompress
if test -d $argv
tar -cf $argv.tar $argv
xz -efvk9T 0 $argv.tar
rm $argv.tar
else
xz -efvk9T 0 $argv
end
end

View File

@ -1,10 +0,0 @@
# Defined in /tmp/fish.E9SjCK/zcompress.fish @ line 2
function zcompress
if test -d $argv
tar -cf $argv.tar $argv
zstd -T0 -19 $argv.tar
rm $argv.tar
else
zstd -T0 -19 $argv
end
end

13
.local/bin/build Executable file
View File

@ -0,0 +1,13 @@
#!/bin/bash
sudo printf ''
git pull
./autogen.sh --prefix=/usr
./configure --prefix=/usr
cmake -DCMAKE_INSTALL_PREFIX=/usr .
sudo printf ''
make -j8
sudo make install
meson --prefix=/usr build
sudo printf ''
ninja -C build
sudo ninja -C build install