<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://lms.onnocenter.or.id/wiki/index.php?action=history&amp;feed=atom&amp;title=Membuat_installer_deb_menggunakan_checkinstall</id>
	<title>Membuat installer deb menggunakan checkinstall - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://lms.onnocenter.or.id/wiki/index.php?action=history&amp;feed=atom&amp;title=Membuat_installer_deb_menggunakan_checkinstall"/>
	<link rel="alternate" type="text/html" href="https://lms.onnocenter.or.id/wiki/index.php?title=Membuat_installer_deb_menggunakan_checkinstall&amp;action=history"/>
	<updated>2026-04-19T21:35:31Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.45.1</generator>
	<entry>
		<id>https://lms.onnocenter.or.id/wiki/index.php?title=Membuat_installer_deb_menggunakan_checkinstall&amp;diff=26353&amp;oldid=prev</id>
		<title>Onnowpurbo: New page:  HOW TO: Using checkinstall to make .debs from sources So you want that app... yes... THAT app, so you goto the website... but... DAMN no .deb file only source files. If you&#039;re anything li...</title>
		<link rel="alternate" type="text/html" href="https://lms.onnocenter.or.id/wiki/index.php?title=Membuat_installer_deb_menggunakan_checkinstall&amp;diff=26353&amp;oldid=prev"/>
		<updated>2011-04-12T22:13:15Z</updated>

		<summary type="html">&lt;p&gt;New page:  HOW TO: Using checkinstall to make .debs from sources So you want that app... yes... THAT app, so you goto the website... but... DAMN no .deb file only source files. If you&amp;#039;re anything li...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt; HOW TO: Using checkinstall to make .debs from sources&lt;br /&gt;
So you want that app... yes... THAT app, so you goto the website... but... DAMN no .deb file only source files.&lt;br /&gt;
If you&amp;#039;re anything like me, you hate ./configure, make, make install you just want an easy .deb package, for easy install and removing.&lt;br /&gt;
Well, checkinstall does that for you. Checkinstall eliminates the &amp;#039;make install&amp;#039; area and creates AND installs a .deb package for you, therefore you can remove it with a simple &amp;#039;dpkg -r foo&amp;#039; or in synaptic.&lt;br /&gt;
&lt;br /&gt;
The first thing you need to do is install check install. So we have to uncomment universe, and apt-get check install like so:&lt;br /&gt;
Code:&lt;br /&gt;
&lt;br /&gt;
 $sudo gedit /etc/apt/sources.list&lt;br /&gt;
&lt;br /&gt;
then uncomment universe so it looks like this&lt;br /&gt;
&lt;br /&gt;
 deb http://archive.ubuntu.com/ubuntu/ warty universe &lt;br /&gt;
 deb-src http://archive.ubuntu.com/ubuntu/ warty universe&lt;br /&gt;
&lt;br /&gt;
save and exit.&lt;br /&gt;
Then, open synaptic and search for checkinstall (make sure you update first) or...&lt;br /&gt;
Code:&lt;br /&gt;
&lt;br /&gt;
 $ sudo apt-get update &amp;amp;&amp;amp; apt-get install checkinstall&lt;br /&gt;
 Reading Package Lists... Done&lt;br /&gt;
 Building Dependency Tree... Done&lt;br /&gt;
 The following NEW packages will be installed:&lt;br /&gt;
   checkinstall&lt;br /&gt;
 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.&lt;br /&gt;
 Need to get 34.8kB of archives.&lt;br /&gt;
 After unpacking 135kB of additional disk space will be used.&lt;br /&gt;
&lt;br /&gt;
 Enter Y to install.&lt;br /&gt;
&lt;br /&gt;
Now, download that source file you need, unpack it using &amp;#039;tar zxvf (or jxvf) foo&amp;#039; and cd to that sources directory.&lt;br /&gt;
&lt;br /&gt;
then do the usual.&lt;br /&gt;
Code:&lt;br /&gt;
&lt;br /&gt;
 ~/Path/to/folder:$ ./configure&lt;br /&gt;
&lt;br /&gt;
when that is done&lt;br /&gt;
&lt;br /&gt;
 ~/path/to/folder:$ make&lt;br /&gt;
&lt;br /&gt;
let that finish, then, instead of doing a &amp;#039;make install&amp;#039; do this:&lt;br /&gt;
&lt;br /&gt;
 ~/path/to/folder:$ sudo checkinstall&lt;br /&gt;
&lt;br /&gt;
accept all the defaults, then an option will come up to set a description. You can set one, then hit enter twice, or just hit enter. Select the next default. And that&amp;#039;s it. You&amp;#039;re done!!&lt;br /&gt;
Checkinstall installed the new .deb package for you, and put a copy of the package into that foler you were working in. Now you can move that .deb package where ever you want it and delete that folder.&lt;br /&gt;
Now if you want to remove that package, just &amp;#039;dpkg -r pkgname&amp;#039; or &amp;#039;apt-get remove pkgname&amp;#039; or do it in synaptic.&lt;br /&gt;
&lt;br /&gt;
Try it out... download beep-media-player based on the other howto (http://www.ubuntuforums.org/showthread.php?t=1988) , then at the end instead of doing a &amp;#039;make install&amp;#039; do a &amp;#039;checkinstall&amp;#039;. Then you have a .deb package for future use.&lt;br /&gt;
&lt;br /&gt;
Easy as that.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Referensi==&lt;br /&gt;
&lt;br /&gt;
* http://ubuntuforums.org/showthread.php?t=2356&lt;br /&gt;
&lt;br /&gt;
==Pranala Menarik==&lt;br /&gt;
&lt;br /&gt;
* [[Membuat installer deb dari debian maintenance guide]]&lt;br /&gt;
* [[Membuat installer deb menggunakan checkinstall]]&lt;br /&gt;
* [[Membuat Installer deb dari sebuah aplikasi]]&lt;br /&gt;
* [[Linux Howto]]&lt;br /&gt;
&lt;br /&gt;
[[Category: Linux]]&lt;/div&gt;</summary>
		<author><name>Onnowpurbo</name></author>
	</entry>
</feed>