2020-02-22 19:40:41 +00:00
|
|
|
#!/usr/bin/env fish
|
2019-03-22 18:53:54 +00:00
|
|
|
|
|
|
|
#Backup original
|
|
|
|
cp config.h config.h.bak
|
|
|
|
cp config_desktop.h config.h
|
|
|
|
|
|
|
|
# Build
|
|
|
|
rm -rf src
|
|
|
|
updpkgsums
|
|
|
|
makepkg -sif
|
|
|
|
|
|
|
|
# Restore original
|
|
|
|
mv config.h.bak config.h
|
|
|
|
|
|
|
|
# Restore original checksums
|
|
|
|
updpkgsums
|