Posts: 21
HardwareGuru
Joined: 13 Jan 2013
#1
Would it be easier to just convert tarballs to .deb instead of following the steps to install the tarball?

There is only two steps to install .deb

Code: Select all

wget (file url)

dpkg -i filename.deb
Rather than:

Code: Select all

wget (fileurl)
mkdir ./BUILD
./Configure
su 
Make install
Posts: 4,164
rokytnji
Joined: 20 Feb 2009
#2
Back when I used to make my own pianobar debs. I just used check install. It is in the repos with build-essential.

Code: Select all

$ apt-cache policy build-essential
build-essential:
  Installed: 11.5
  Candidate: 11.5
  Version table:
 *** 11.5 0
        500 http://ftp.us.debian.org/debian/ testing/main amd64 Packages
        100 /var/lib/dpkg/status
$ apt-cache policy checkinstall
checkinstall:
  Installed: (none)
  Candidate: 1.6.2-3
  Version table:
     1.6.2-3 0
        500 http://ftp.us.debian.org/debian/ testing/main amd64 Packages

========= SCRAPER REMOVED AN EMBEDDED LINK HERE ===========
url was:"http://www.linuxjournal.com/content/using-checkinstall-build-packages-source"
linktext was:"http://www.linuxjournal.com/content/usi ... ges-source"
====================================



========= SCRAPER REMOVED AN EMBEDDED LINK HERE ===========
url was:"http://www.falkotimme.com/howtos/checkinstall/"
linktext was:"http://www.falkotimme.com/howtos/checkinstall/"
====================================
Posts: 137
duncan_mk
Joined: 19 Sep 2012
#3
Checkinstall - good tip Roky - thanks!

dmk