mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-31 08:21:59 +02:00
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.
13 lines
218 B
JavaScript
Executable File
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);
|