debian derivative ecere install script

General help specific to the Linux platform.
Post Reply
amigojapan
Posts: 7
Joined: Fri Jul 29, 2022 7:43 am

debian derivative ecere install script

Post by amigojapan »

I made the following ecere install script that shoudl work for debian derivatives , specifically my machine is linux mint cinnamon...

Code: Select all

#!/bin/bash
apt install -y debhelper dh-exec dpkg-dev libasound2-dev libffi-dev libfontconfig1-dev libfreetype6-dev libgif-dev libgl1-mesa-dev libgl1-mesa-glx libjpeg-dev libncurses5-dev libpng-dev libsqlite3-dev libx11-dev libxext-dev libxrender-dev linux-libc-dev upx-ucl zlib1g-dev
apt install -y fonts-freefont-ttf libasound2-dev  libffi-dev libfontconfig1-dev libfreetype6-dev libgif-dev libgl1-mesa-dev libjpeg-dev libncurses5-dev libpng-dev libsqlite3-dev libx11-dev libxext-dev libxrender-dev linux-libc-dev libecc0 libecerecom0
apt install -y libcurl4-openssl-dev
apt install -y libssl-dev
apt install -y fonts-inconsolata
apt install -y ttf-bitstream-vera
make -j12
sudo make install

[ ! -f /usr/share/fonts/truetype/msttcorefonts/tahoma.ttf -o ! -f /usr/share/fonts/truetype/msttcorefonts/tahomabd.ttf ] &&
wget https://sourceforge.net/projects/corefonts/files/OldFiles/IELPKTH.CAB &&
cabextract -F 'tahoma*ttf' IELPKTH.CAB &&
mkdir -p /usr/share/fonts/truetype/msttcorefonts/ &&
mv -f tahoma*ttf /usr/share/fonts/truetype/msttcorefonts/ &&
chmod 644 /usr/share/fonts/truetype/msttcorefonts/tahoma* &&
fc-cache -v &&
rm -f IELPKTH.CAB &&
echo "Installed Tahoma"
echo "mint install of ecere complete!"
just save this in a file make it chmod +x filename put it in the directory where you unpacked ecere, then run it, ecere should be automatically installed
jerome
Site Admin
Posts: 608
Joined: Sat Jan 16, 2010 11:16 pm

Re: debian derivative ecere install script

Post by jerome »

@amigojapan Please remove the:

> libecc0 libecerecom0

Since those are Ecere packages from the Ubuntu repository and you are building them and installing them from source here in this case, so they will be overwritten anyways and this will result in modified installed packages.
amigojapan
Posts: 7
Joined: Fri Jul 29, 2022 7:43 am

Re: debian derivative ecere install script

Post by amigojapan »

I see
Post Reply