From 48270583033ebc2e10fa85c46b61dfa60d5c900b Mon Sep 17 00:00:00 2001 From: Loic <4661917+HacKurx@users.noreply.github.com> Date: Tue, 8 Mar 2022 20:24:15 +0100 Subject: [PATCH] Add .pkg support for FreeBSD Freebsd has recently changed the extension of its packages [1], so it is necessary to add the .pkg extension in order to open them with engrampa. [1] https://cgit.freebsd.org/ports/commit/?id=e497a16a286972bfcab908209b11ee6a13d99dc9 --- src/fr-init.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/fr-init.c b/src/fr-init.c index 256e13e15..80fadaad2 100644 --- a/src/fr-init.c +++ b/src/fr-init.c @@ -150,6 +150,7 @@ FrExtensionType file_ext_type[] = { { ".otp", "application/vnd.oasis.opendocument.presentation-template" }, { ".ots", "application/vnd.oasis.opendocument.spreadsheet-template" }, { ".ott", "application/vnd.oasis.opendocument.text-template" }, + { ".pkg", "application/x-xz-compressed-tar" }, { ".rar", "application/x-rar" }, { ".rpm", "application/x-rpm" }, { ".rz", "application/x-rzip" },