build:
  cargo build -r

install: build
  cp target/release/mime-copy ~/.local/bin/
  cp ./mime-copy.desktop ~/.local/share/applications/

install-http: install
  xdg-mime default mime-copy.desktop x-scheme-handler/http x-scheme-handler/https

uninstall:
  rm -f ~/.local/bin/mime-copy
  rm -f ~/.local/share/applications/mime-copy.desktop
