put this back, it got lost again
This commit is contained in:
parent
82b32578ec
commit
fb3bd1182d
|
@ -0,0 +1,37 @@
|
||||||
|
Debian
|
||||||
|
======
|
||||||
|
|
||||||
|
A fresh build based on master branch running Debian 7 (wheezy)\:
|
||||||
|
::
|
||||||
|
|
||||||
|
root@host:~# aptitude install -y apache2 mysql-server php5 php5-mysql build-essential libmysqlclient-dev libssl-dev libbz2-dev libpcre3-dev libdbi-perl libarchive-zip-perl libdate-manip-perl libdevice-serialport-perl libmime-perl libpcre3 libwww-perl libdbd-mysql-perl libsys-mmap-perl yasm automake autoconf libjpeg8-dev libjpeg8 apache2-mpm-prefork libapache2-mod-php5 php5-cli libphp-serialization-perl libgnutls-dev libjpeg8-dev libavcodec-dev libavformat-dev libswscale-dev libavutil-dev libv4l-dev libtool ffmpeg libnetpbm10-dev libavdevice-dev libmime-lite-perl dh-autoreconf dpatch;
|
||||||
|
|
||||||
|
root@host:~# git clone https://github.com/ZoneMinder/ZoneMinder.git zoneminder;
|
||||||
|
root@host:~# cd zoneminder;
|
||||||
|
root@host:~# ln -s distros/debian;
|
||||||
|
root@host:~# dpkg-checkbuilddeps;
|
||||||
|
root@host:~# dpkg-buildpackage;
|
||||||
|
|
||||||
|
One level above you'll now find a deb package matching the architecture of the build host:
|
||||||
|
::
|
||||||
|
|
||||||
|
root@host:~# ls -1 ~/zoneminder*;
|
||||||
|
/root/zoneminder_1.26.4-1_amd64.changes
|
||||||
|
/root/zoneminder_1.26.4-1_amd64.deb
|
||||||
|
/root/zoneminder_1.26.4-1.dsc
|
||||||
|
/root/zoneminder_1.26.4-1.tar.gz
|
||||||
|
|
||||||
|
The dpkg command itself does not resolve dependencies. That's what high-level interfaces like aptitude and apt-get are normally for. Unfortunately, unlike RPM, there's no easy way to install a separate deb package not contained with any repository.
|
||||||
|
|
||||||
|
To overcome this "limitation" we'll use dpkg only to install the zoneminder package and apt-get to fetch all needed dependencies afterwards. Running dpkg-reconfigure in the end will ensure that the setup scripts e.g. for database provisioning were executed.
|
||||||
|
::
|
||||||
|
|
||||||
|
root@host:~# dpkg -i /root/zoneminder_1.26.4-1_amd64.deb; apt-get install -f;
|
||||||
|
root@host:~# dpkg-reconfigure zoneminder;
|
||||||
|
|
||||||
|
Alternatively you may also use gdebi to automatically resolve dependencies during installation:
|
||||||
|
::
|
||||||
|
|
||||||
|
root@host:~# aptitude install -y gdebi;
|
||||||
|
root@host:~# gdebi /root/zoneminder_1.26.4-1_amd64.deb;
|
||||||
|
|
Loading…
Reference in New Issue