Files
clapper/bin/clapper
Rafostar f6f2a2f4e4 Add some easy way to install
I know that this should be done using some sort of build system (like meson), but the player is still far from finished and a basic install script should be sufficient for the time being, if anyone wishes to test it.
2020-09-03 11:33:42 +02:00

13 lines
218 B
JavaScript
Executable File

#!/usr/bin/gjs
const Package = imports.package;
Package.init({
name: "clapper",
version: "0.0.0",
prefix: "/usr/local",
libdir: "/usr/local/lib",
datadir: "/usr/local/share",
});
Package.run(imports.main);