mirror of
https://github.com/alrayyes/dotfiles/
synced 2023-11-14 15:56:30 +00:00
17 lines
212 B
Bash
Executable File
17 lines
212 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#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
|