mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 22:58:05 +02:00
19 lines
613 B
Bash
Executable File
19 lines
613 B
Bash
Executable File
#!/bin/bash
|
|
LazDebDir=$(pwd)/debian/lazarus/
|
|
|
|
#Copy Lazarus to /usr/share
|
|
mkdir -p $LazDebDir/usr/share/lazarus
|
|
cp -R $(pwd)/* $LazDebDir/usr/share/lazarus
|
|
|
|
#Make icons and menu-entries for the gnome menu
|
|
mkdir -p $LazDebDir/usr/share/pixmaps/
|
|
mkdir -p $LazDebDir/usr/share/gnome/apps/Development/
|
|
mkdir -p $LazDebDir/usr/bin/
|
|
install -m 644 $(pwd)/images/ide_icon48x48.png $LazDebDir/usr/share/pixmaps/lazarus.png
|
|
install -m 644 $(pwd)/gnome.ide.desktop $LazDebDir/usr/share/gnome/apps/Development/lazarus.desktop
|
|
|
|
#Make a symlink to /usr/bin
|
|
cd $LazDebDir
|
|
ln usr/share/lazarus/lazarus usr/bin/lazarus
|
|
|