diff --git a/.rpm/manifest-linux2.json b/.rpm/manifest-linux2.json new file mode 100644 index 0000000..b1fc2e9 --- /dev/null +++ b/.rpm/manifest-linux2.json @@ -0,0 +1,9 @@ +{ + "allowed_extensions": [ + "profile-switcher-ff@nd.ax" + ], + "description": "Profile Switcher for Firefox", + "name": "ax.nd.profile_switcher_ff", + "path": "/usr/bin/ff-pswitch-connector", + "type": "stdio" +} \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index a91c0a8..314748c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,8 @@ assets = [ # binary ["target/release/firefox_profile_switcher_connector", "/usr/bin/ff-pswitch-connector", "755"], # manifest - ["manifest/manifest-linux.json", "/usr/lib/mozilla/native-messaging-hosts/ax.nd.profile_switcher_ff.json", "644"] + ["manifest/manifest-linux.json", "/usr/lib/mozilla/native-messaging-hosts/ax.nd.profile_switcher_ff.json", "644"], + ["manifest/manifest-linux.json", "/usr/lib64/mozilla/native-messaging-hosts/ax.nd.profile_switcher_ff.json", "644"] ] [package.metadata.rpm] @@ -54,3 +55,4 @@ firefox_profile_switcher_connector = { path = "/usr/bin/ff-pswitch-connector" } [package.metadata.rpm.files] "manifest-linux.json" = { path = "/usr/lib/mozilla/native-messaging-hosts/ax.nd.profile_switcher_ff.json" } +"manifest-linux2.json" = { path = "/usr/lib64/mozilla/native-messaging-hosts/ax.nd.profile_switcher_ff.json" }