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.
This commit is contained in:
Rafostar
2020-09-03 11:33:42 +02:00
parent 7d2b1f1118
commit f6f2a2f4e4
4 changed files with 81 additions and 3 deletions

12
bin/clapper Executable file
View File

@@ -0,0 +1,12 @@
#!/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);