Questions tagged [checkinstall]
24 questions
15
votes
4 answers
How to manage multiple package dependencies with checkinstall?
I have a package that I've been building using checkinstall for a while now, and I wanted to automate it (pass the values in via command line instead of typing the selection, pasting the value in, etc...)
I am not sure if this is a checkinstall bug,…

Jeff Geisperger
- 583
- 4
- 17
10
votes
3 answers
Why isn't mkdir -p working right in a script called by checkinstall?
I'm trying to compile Quarter and package it using checkinstall.
If I do the standard ./configure && make && sudo make install, things go fine.
$ wget http://ftp.coin3d.org/coin/src/all/Quarter-1.0.0.tar.gz
$ tar xzf Quarter-1.0.0.tar.gz
$ cd…

Dan
- 5,929
- 6
- 42
- 52
9
votes
3 answers
checkinstall creates useless deb?
I have a trivially simple command-line program that literally consists of a python script and some helper shell scripts. I'd like to learn about packaging this program, though it is trivial.
From what I gathered, I went the configure/make/install…

cemulate
- 2,305
- 1
- 34
- 48
8
votes
1 answer
Checkinstall fails to make a Ruby 1.9.2 package
Checkinstall fails to make a Ruby package with the following error.
# checkinstall -D --install=no --pakdir=/home//Рабочий\ стол/
<...>
installing binary commands: /usr/local/bin
/home//Рабочий…

Shamaoke
- 6,222
- 8
- 34
- 40
5
votes
1 answer
checkinstall source code inside home directory
I am trying to create a deb file from my openCV (not relevant) source code. location for the source is ~/software/opencv/
Here are the commands I executed successfully.
cd ~/software/opencv/
mkdir build
cd build
cmake ..
make
Then instead of sudo…

nipunasudha
- 2,427
- 2
- 21
- 46
4
votes
1 answer
Softether deb package installation fails on Ubuntu 14.04
I have created a new deb package from SoftEtherVPN source at https://github.com/SoftEtherVPN/SoftEtherVPN using
checkinstall -D make install
The process successfully installs the software but the resultant deb package fails to install with this…

markhorrocks
- 1,199
- 19
- 82
- 151
4
votes
2 answers
Creating Python RPM
I have been reading about creating an RPM for Python 2.6.4. In this page: http://docs.python.org/distutils/builtdist.html it says you can create an RPM of the current Python using python setup.py bdist_rpm. The question's I have are:
Do you have to…

chrisg
- 40,337
- 38
- 86
- 107
3
votes
5 answers
How can I sandbox filesystem activity, particularly writes?
Gentoo has a feature in portage, that prevents and logs writes outside of the build and packaging directories.
Checkinstall is able to monitor writes, and package up all the generated files after completion.
Autotools have the DESTDIR macro that…

Matt Joiner
- 112,946
- 110
- 377
- 526
3
votes
1 answer
trying to overwrite `/var/backups/infodir.bak', which is also in package x
when compiling software I do always . ./configure && make && checkinstall -D make install to build the software.
Now i run into the issue when using checkinstall that I get the error
"trying to overwrite `/var/backups/infodir.bak', which is also…

user885679
- 45
- 4
3
votes
0 answers
What is the simplest way to create source Debian package?
Suppose you have hello.c
int main() { return 0; }
and Makefile
hello: hello.c
gcc hello.c -o hello
install: hello
install -m 755 hello /usr/bin/
The quickest and easiest way to get binary package seems to be to use…

Vi.
- 37,014
- 18
- 93
- 148
2
votes
2 answers
How to Install python3.8 using checkinstall on debian 10?
I've installed debian 10 on server.
PRETTY_NAME="Debian GNU/Linux 10 (buster)"
ID=debian
arch: x86_64
It had python version 3.7.3 installed on it, so i tried to update it to version 3.8.5 and I want to use checkinstall..
I add backports repo in…

Artem S. Zhelonkin
- 152
- 1
- 7
2
votes
1 answer
CPython Install Failure
I am trying to build and install python 3.6.2 from source on my Raspberry Pi running Raspbian Jessie. Here's how the build process has gone:
$ ./configure --enable-optimizations --enable-ipv6 # everything seems fine
$ make -s -j$(nproc) #…

Scott Colby
- 1,370
- 12
- 25
2
votes
1 answer
What it means "A breaks B and and is installed" while compiling and installing apt pkg in Ubuntu?
I have an apt package that is compiled for Ubuntu 13.04 and want to install it on Ubuntu 14.04
The package in question depends on libcogl12 which is not available on Ubuntu 14.04 (replaced by newer libcogl15 as i assume).
In order to solve this…

grigoryvp
- 40,413
- 64
- 174
- 277
2
votes
0 answers
Autoconf, setcap and checkinstall
I have an autoconf project that contains a post-install hook like this:
install-exec-hook:
setcap cap_net_raw+ep $(bindir)/myexecutable
I use checkinstall to package it up and install it on my local system, however after checkinstall is done,…

brooks94
- 3,836
- 4
- 30
- 57
1
vote
1 answer
How to check from python, if an arbitrary program is installed
I guess what I'm looking for is closer to this question.
I'm running a python script (on a windows machine) that requires a program and a service to be installed. Since I have no control over which machines my script will be run on, I need to check…

inspectorG4dget
- 110,290
- 27
- 149
- 241