Can I compile Flatpak from source? The 2019 Stack Overflow Developer Survey Results Are InHow...

Springs with some finite mass

Should I use my personal or workplace e-mail when registering to external websites for work purpose?

How can I fix this gap between bookcases I made?

What is this 4-propeller plane?

What tool would a Roman-age civilization have to grind silver and other metals into dust?

I see my dog run

Why can Shazam do this?

Realistic Alternatives to Dust: What Else Could Feed a Plankton Bloom?

Spanish for "widget"

How long do I have to send payment?

What is the steepest angle that a canal can be traversable without locks?

It's possible to achieve negative score?

What is the motivation for a law requiring 2 parties to consent for recording a conversation

"What time...?" or "At what time...?" - what is more grammatically correct?

What do the Banks children have against barley water?

Dual Citizen. Exited the US on Italian passport recently

Extreme, unacceptable situation and I can't attend work tomorrow morning

Why could you hear an Amstrad CPC working?

In microwave frequencies, do you use a circulator when you need a (near) perfect diode?

What does "rabbited" mean/imply in this sentence?

What can other administrators access on my machine?

Is there a name of the flying bionic bird?

Is bread bad for ducks?

Why is it "Tumoren" and not "Tumore"?



Can I compile Flatpak from source?



The 2019 Stack Overflow Developer Survey Results Are InHow will Flatpak prevent proliferation of out-to-date libraries?What exactly is Flatpak and why would I want to use it?How do I open files with flatpak okular from command line?How to make flatpak applications use standard locations for user data files?Absolute paths added to flatpak are skipped“Gnome Software” is not showing flatpak updatesHow to list permissions of flatpak applications?How to get “flatpak enter” to work?How to reset all manually overriden permissions for a flatpak?Can I move a user-installed flatpak to a system-installed one and vice-versa?





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







-1















I recently downloaded a Flatpak Epiphany package. However, there is no support on my distro for Flatpak. So is there a way to compile it from source?










share|improve this question

























  • I realize it was down voted, but if someone does not tell me what is wrong, it's quite useless, since I have no idea of what is wrong with it. Besides I want to do a similar topic for a similar package system (the one Ubuntu uses) and would be very benefice if someone explained it to me, as to allow me to do commit such mistake once more.

    – user2752471
    yesterday


















-1















I recently downloaded a Flatpak Epiphany package. However, there is no support on my distro for Flatpak. So is there a way to compile it from source?










share|improve this question

























  • I realize it was down voted, but if someone does not tell me what is wrong, it's quite useless, since I have no idea of what is wrong with it. Besides I want to do a similar topic for a similar package system (the one Ubuntu uses) and would be very benefice if someone explained it to me, as to allow me to do commit such mistake once more.

    – user2752471
    yesterday














-1












-1








-1


0






I recently downloaded a Flatpak Epiphany package. However, there is no support on my distro for Flatpak. So is there a way to compile it from source?










share|improve this question
















I recently downloaded a Flatpak Epiphany package. However, there is no support on my distro for Flatpak. So is there a way to compile it from source?







flatpak






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 16 hours ago









Stephen Kitt

181k25413492




181k25413492










asked yesterday









user2752471user2752471

296




296













  • I realize it was down voted, but if someone does not tell me what is wrong, it's quite useless, since I have no idea of what is wrong with it. Besides I want to do a similar topic for a similar package system (the one Ubuntu uses) and would be very benefice if someone explained it to me, as to allow me to do commit such mistake once more.

    – user2752471
    yesterday



















  • I realize it was down voted, but if someone does not tell me what is wrong, it's quite useless, since I have no idea of what is wrong with it. Besides I want to do a similar topic for a similar package system (the one Ubuntu uses) and would be very benefice if someone explained it to me, as to allow me to do commit such mistake once more.

    – user2752471
    yesterday

















I realize it was down voted, but if someone does not tell me what is wrong, it's quite useless, since I have no idea of what is wrong with it. Besides I want to do a similar topic for a similar package system (the one Ubuntu uses) and would be very benefice if someone explained it to me, as to allow me to do commit such mistake once more.

– user2752471
yesterday





I realize it was down voted, but if someone does not tell me what is wrong, it's quite useless, since I have no idea of what is wrong with it. Besides I want to do a similar topic for a similar package system (the one Ubuntu uses) and would be very benefice if someone explained it to me, as to allow me to do commit such mistake once more.

– user2752471
yesterday










1 Answer
1






active

oldest

votes


















1














The main Flatpak site doesn’t make this easy to find, but the Flatpak source code is available on GitHub and is built in a manner familiar to most Autotools-based projects:



git clone --recurse-submodules https://github.com/flatpak/flatpak.git
cd flatpak
./autogen.sh
./configure
make
sudo make install


You’ll need a number of dependencies, which are detailed in the README.md file. You’ll also probably need to adjust some of the ./configure flags depending on your target environment.



You may also prefer to work from a release tarball instead of cloning the repository.






share|improve this answer
























    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "106"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f511274%2fcan-i-compile-flatpak-from-source%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    The main Flatpak site doesn’t make this easy to find, but the Flatpak source code is available on GitHub and is built in a manner familiar to most Autotools-based projects:



    git clone --recurse-submodules https://github.com/flatpak/flatpak.git
    cd flatpak
    ./autogen.sh
    ./configure
    make
    sudo make install


    You’ll need a number of dependencies, which are detailed in the README.md file. You’ll also probably need to adjust some of the ./configure flags depending on your target environment.



    You may also prefer to work from a release tarball instead of cloning the repository.






    share|improve this answer




























      1














      The main Flatpak site doesn’t make this easy to find, but the Flatpak source code is available on GitHub and is built in a manner familiar to most Autotools-based projects:



      git clone --recurse-submodules https://github.com/flatpak/flatpak.git
      cd flatpak
      ./autogen.sh
      ./configure
      make
      sudo make install


      You’ll need a number of dependencies, which are detailed in the README.md file. You’ll also probably need to adjust some of the ./configure flags depending on your target environment.



      You may also prefer to work from a release tarball instead of cloning the repository.






      share|improve this answer


























        1












        1








        1







        The main Flatpak site doesn’t make this easy to find, but the Flatpak source code is available on GitHub and is built in a manner familiar to most Autotools-based projects:



        git clone --recurse-submodules https://github.com/flatpak/flatpak.git
        cd flatpak
        ./autogen.sh
        ./configure
        make
        sudo make install


        You’ll need a number of dependencies, which are detailed in the README.md file. You’ll also probably need to adjust some of the ./configure flags depending on your target environment.



        You may also prefer to work from a release tarball instead of cloning the repository.






        share|improve this answer













        The main Flatpak site doesn’t make this easy to find, but the Flatpak source code is available on GitHub and is built in a manner familiar to most Autotools-based projects:



        git clone --recurse-submodules https://github.com/flatpak/flatpak.git
        cd flatpak
        ./autogen.sh
        ./configure
        make
        sudo make install


        You’ll need a number of dependencies, which are detailed in the README.md file. You’ll also probably need to adjust some of the ./configure flags depending on your target environment.



        You may also prefer to work from a release tarball instead of cloning the repository.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 17 hours ago









        Stephen KittStephen Kitt

        181k25413492




        181k25413492






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Unix & Linux Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f511274%2fcan-i-compile-flatpak-from-source%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Taj Mahal Inhaltsverzeichnis Aufbau | Geschichte | 350-Jahr-Feier | Heutige Bedeutung | Siehe auch |...

            Baia Sprie Cuprins Etimologie | Istorie | Demografie | Politică și administrație | Arii naturale...

            Nicolae Petrescu-Găină Cuprins Biografie | Opera | In memoriam | Varia | Controverse, incertitudini...