Is it possible to install latest Github software releases through apt-get on Ubuntu?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty margin-bottom:0;







up vote
1
down vote

favorite












I usually install software through apt-get on Ubuntu.



I'm trying to install the latest stable version (v8.6.5) of this software:
https://github.com/jcupitt/libvips/releases



The problem is that if I were to install through apt-get, I would end up with version 8.4.5-1build1



Is there a way for me to install this latest version v8.6.5 through apt-get? Or am I forced to download/compile myself, then track down all the dependencies? What is the best way to handle my situation?







share|improve this question



























    up vote
    1
    down vote

    favorite












    I usually install software through apt-get on Ubuntu.



    I'm trying to install the latest stable version (v8.6.5) of this software:
    https://github.com/jcupitt/libvips/releases



    The problem is that if I were to install through apt-get, I would end up with version 8.4.5-1build1



    Is there a way for me to install this latest version v8.6.5 through apt-get? Or am I forced to download/compile myself, then track down all the dependencies? What is the best way to handle my situation?







    share|improve this question























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      I usually install software through apt-get on Ubuntu.



      I'm trying to install the latest stable version (v8.6.5) of this software:
      https://github.com/jcupitt/libvips/releases



      The problem is that if I were to install through apt-get, I would end up with version 8.4.5-1build1



      Is there a way for me to install this latest version v8.6.5 through apt-get? Or am I forced to download/compile myself, then track down all the dependencies? What is the best way to handle my situation?







      share|improve this question













      I usually install software through apt-get on Ubuntu.



      I'm trying to install the latest stable version (v8.6.5) of this software:
      https://github.com/jcupitt/libvips/releases



      The problem is that if I were to install through apt-get, I would end up with version 8.4.5-1build1



      Is there a way for me to install this latest version v8.6.5 through apt-get? Or am I forced to download/compile myself, then track down all the dependencies? What is the best way to handle my situation?









      share|improve this question












      share|improve this question




      share|improve this question








      edited Aug 3 at 14:48









      Jeff Schaller

      30.7k846104




      30.7k846104









      asked Aug 3 at 14:01









      Wyatt Jackson

      61




      61




















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          1
          down vote













          You can make a .deb package yourself, then you can use apt for installing it. This process contains the compiling, of course.
          https://wiki.debian.org/HowToPackageForDebian






          share|improve this answer




























            up vote
            0
            down vote













            I found no repositories that offered the latest version as of this writing (8.6.5) of vips. I did however find this blog post which covers very well the steps to create your own DEB package.



            • How to build up-to-date VIPS packages for Debian

            General steps



            NOTE: Consult the above, there may be some bits not covered below. Below shows the general steps to do what you're asking, given there's no official repo that provides these.



            setup build env & download vips

            $ apt install build-essential devscripts

            $ curl -LO https://github.com/jcupitt/libvips/releases/download/v8.6.5/vips-8.6.5.tar.gz
            $ tar zxvf <tarball>
            $ cd <unpacked tarball dir>
            $ curl -LO http://cdn-fastly.deb.debian.org/debian/pool/main/v/vips/vips_8.6.5.orig.tar.gz
            $ tar zxvf <tarball>


            install deps

            $ mk-build-deps
            $ sudo apt install ./vips-build-deps_*.deb


            build

            $ debuild -i -us -uc -b


            Results

            $ sudo apt install *.deb





            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',
              convertImagesToLinks: false,
              noModals: false,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: null,
              bindNavPrevention: true,
              postfix: "",
              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%2f460337%2fis-it-possible-to-install-latest-github-software-releases-through-apt-get-on-ubu%23new-answer', 'question_page');

              );

              Post as a guest






























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes








              up vote
              1
              down vote













              You can make a .deb package yourself, then you can use apt for installing it. This process contains the compiling, of course.
              https://wiki.debian.org/HowToPackageForDebian






              share|improve this answer

























                up vote
                1
                down vote













                You can make a .deb package yourself, then you can use apt for installing it. This process contains the compiling, of course.
                https://wiki.debian.org/HowToPackageForDebian






                share|improve this answer























                  up vote
                  1
                  down vote










                  up vote
                  1
                  down vote









                  You can make a .deb package yourself, then you can use apt for installing it. This process contains the compiling, of course.
                  https://wiki.debian.org/HowToPackageForDebian






                  share|improve this answer













                  You can make a .deb package yourself, then you can use apt for installing it. This process contains the compiling, of course.
                  https://wiki.debian.org/HowToPackageForDebian







                  share|improve this answer













                  share|improve this answer



                  share|improve this answer











                  answered Aug 3 at 14:06









                  Ipor Sircer

                  8,6271920




                  8,6271920






















                      up vote
                      0
                      down vote













                      I found no repositories that offered the latest version as of this writing (8.6.5) of vips. I did however find this blog post which covers very well the steps to create your own DEB package.



                      • How to build up-to-date VIPS packages for Debian

                      General steps



                      NOTE: Consult the above, there may be some bits not covered below. Below shows the general steps to do what you're asking, given there's no official repo that provides these.



                      setup build env & download vips

                      $ apt install build-essential devscripts

                      $ curl -LO https://github.com/jcupitt/libvips/releases/download/v8.6.5/vips-8.6.5.tar.gz
                      $ tar zxvf <tarball>
                      $ cd <unpacked tarball dir>
                      $ curl -LO http://cdn-fastly.deb.debian.org/debian/pool/main/v/vips/vips_8.6.5.orig.tar.gz
                      $ tar zxvf <tarball>


                      install deps

                      $ mk-build-deps
                      $ sudo apt install ./vips-build-deps_*.deb


                      build

                      $ debuild -i -us -uc -b


                      Results

                      $ sudo apt install *.deb





                      share|improve this answer



























                        up vote
                        0
                        down vote













                        I found no repositories that offered the latest version as of this writing (8.6.5) of vips. I did however find this blog post which covers very well the steps to create your own DEB package.



                        • How to build up-to-date VIPS packages for Debian

                        General steps



                        NOTE: Consult the above, there may be some bits not covered below. Below shows the general steps to do what you're asking, given there's no official repo that provides these.



                        setup build env & download vips

                        $ apt install build-essential devscripts

                        $ curl -LO https://github.com/jcupitt/libvips/releases/download/v8.6.5/vips-8.6.5.tar.gz
                        $ tar zxvf <tarball>
                        $ cd <unpacked tarball dir>
                        $ curl -LO http://cdn-fastly.deb.debian.org/debian/pool/main/v/vips/vips_8.6.5.orig.tar.gz
                        $ tar zxvf <tarball>


                        install deps

                        $ mk-build-deps
                        $ sudo apt install ./vips-build-deps_*.deb


                        build

                        $ debuild -i -us -uc -b


                        Results

                        $ sudo apt install *.deb





                        share|improve this answer

























                          up vote
                          0
                          down vote










                          up vote
                          0
                          down vote









                          I found no repositories that offered the latest version as of this writing (8.6.5) of vips. I did however find this blog post which covers very well the steps to create your own DEB package.



                          • How to build up-to-date VIPS packages for Debian

                          General steps



                          NOTE: Consult the above, there may be some bits not covered below. Below shows the general steps to do what you're asking, given there's no official repo that provides these.



                          setup build env & download vips

                          $ apt install build-essential devscripts

                          $ curl -LO https://github.com/jcupitt/libvips/releases/download/v8.6.5/vips-8.6.5.tar.gz
                          $ tar zxvf <tarball>
                          $ cd <unpacked tarball dir>
                          $ curl -LO http://cdn-fastly.deb.debian.org/debian/pool/main/v/vips/vips_8.6.5.orig.tar.gz
                          $ tar zxvf <tarball>


                          install deps

                          $ mk-build-deps
                          $ sudo apt install ./vips-build-deps_*.deb


                          build

                          $ debuild -i -us -uc -b


                          Results

                          $ sudo apt install *.deb





                          share|improve this answer















                          I found no repositories that offered the latest version as of this writing (8.6.5) of vips. I did however find this blog post which covers very well the steps to create your own DEB package.



                          • How to build up-to-date VIPS packages for Debian

                          General steps



                          NOTE: Consult the above, there may be some bits not covered below. Below shows the general steps to do what you're asking, given there's no official repo that provides these.



                          setup build env & download vips

                          $ apt install build-essential devscripts

                          $ curl -LO https://github.com/jcupitt/libvips/releases/download/v8.6.5/vips-8.6.5.tar.gz
                          $ tar zxvf <tarball>
                          $ cd <unpacked tarball dir>
                          $ curl -LO http://cdn-fastly.deb.debian.org/debian/pool/main/v/vips/vips_8.6.5.orig.tar.gz
                          $ tar zxvf <tarball>


                          install deps

                          $ mk-build-deps
                          $ sudo apt install ./vips-build-deps_*.deb


                          build

                          $ debuild -i -us -uc -b


                          Results

                          $ sudo apt install *.deb






                          share|improve this answer















                          share|improve this answer



                          share|improve this answer








                          edited Aug 3 at 16:12


























                          answered Aug 3 at 15:54









                          slm♦

                          232k65479648




                          232k65479648






















                               

                              draft saved


                              draft discarded


























                               


                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function ()
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f460337%2fis-it-possible-to-install-latest-github-software-releases-through-apt-get-on-ubu%23new-answer', 'question_page');

                              );

                              Post as a guest













































































                              Popular posts from this blog

                              How to check contact read email or not when send email to Individual?

                              Bahrain

                              Postfix configuration issue with fips on centos 7; mailgun relay