Download
Sinusystem Pakete aus unserem Debian RepositoryDie hier aufgelisteten Pakete sind unter der GPLv3 Lizenz frei verfügbar.
Das ist der Link zu unserem öffentlichen Debian Repository: http://debian.sinusystem.net/
Installation instructions for Debian based systems like Ubuntu or Raspbian:
- 1. Get public GPG key and activate it:
wget -O - http://debian.sinusystem.net/public.gpg.key | apt-key add -
- 2. Activate repository:
echo "deb http://debian.sinusystem.net public main" | tee /etc/apt/sources.list.d/sinusystem.list;
apt update - 3. Installation
apt install sinusystem
Just in case you need it, here is how to fix the lack of these packages in the main debian repository.
Debian Stretch (9.0) PHP7.2 Installation
wget -q -O- https://packages.sury.org/php/apt.gpg | apt-key add -
echo "deb https://packages.sury.org/php/ stretch main" | tee /etc/apt/sources.list.d/php.list
PHP7.2 Mcrypt and Gnupg extensions
apt install gcc make autoconf libc-dev libmcrypt-dev php7.2-dev pkg-config
pecl install mcrypt-1.0.1
php -i | grep mcrypt
sudo echo "extension=mcrypt.so" >/etc/php/7.2/cli/conf.d/20-mcrypt.ini
sudo echo "extension=mcrypt.so" >/etc/php/7.2/apache2/conf.d/20-mcrypt.ini
php -i | grep gnupg
apt install libgpgme11-dev
pecl install gnupg-1.4.0
sudo echo "extension=gnupg.so" >/etc/php/7.2/cli/conf.d/20-gnupg.ini
sudo echo "extension=gnupg.so" >/etc/php/7.2/apache2/conf.d/20-gnupg.ini