lazarus/tools/install
2024-10-25 21:38:21 +02:00
..
cross_unix
debian_fpc-laz deb: machine readable copyright 2020-04-19 12:27:04 +00:00
debian_fpc-src
debian_lazarus tools: create debs: added arch arm64, thx to Reinhold and Otto 2024-06-05 14:58:36 +02:00
freebsd_ports
linux set main version to 4.99 2024-10-05 22:03:23 +02:00
macosx mac env options: added fpc source dir 2024-10-25 21:38:21 +02:00
patches
rpm rpm: prevent stripping 2024-10-24 17:05:14 +02:00
slacktgz
win set main version to 4.99 2024-10-05 22:03:23 +02:00
.gitignore tools: gitignore 2021-10-30 11:48:12 +02:00
build_fpc_snaphot_rpm.sh
check_fpc_dependencies.sh
create_clean_fpcsrc_directory.sh
create_clean_lazarus_directory.sh
create_fpc_deb.sh tools: create fpc tgz from git 2024-08-13 20:25:42 +02:00
create_fpc_export_tgz.sh tools: debs: download fpc trunk 2024-08-13 20:40:17 +02:00
create_fpc_rpm.sh rpm: simplified 2024-10-23 19:47:01 +02:00
create_fpc_tgz_from_local_dir.sh rpm: added spec files 2024-10-23 18:16:38 +02:00
create_fpc-src_deb.sh
create_fpc-src_rpm.sh fpm: renamed fpc-src-laz spec 2024-10-23 18:35:46 +02:00
create_lazarus_deb.sh deb: env opts for linux arm64 2024-09-30 15:33:37 +02:00
create_lazarus_export_tgz.sh deb: fixed lazarus tgz 2023-06-28 23:53:30 +02:00
create_lazarus_rpm.sh rpm: renamed lazarus to lazarus-project and added conflicts 2024-10-23 20:08:06 +02:00
create_lazarus_slacktgz.sh
create_lazarus_snapshot_rpm.sh
do_nothing.sh
file_filter.sh
fpcsrc-patch
get_fpc_full_version.sh
get_lazarus_version.bat IDE: Move LazConf.pp to new base-package "IdeConfig" 2022-12-08 19:28:19 +01:00
get_lazarus_version.sh IDE: Move LazConf.pp to new base-package "IdeConfig" 2022-12-08 19:28:19 +01:00
get_svn_revision_number.sh
README.txt tools: readme about debs 2024-08-13 20:35:30 +02:00
replace_in_files.pl tools: Debian requires installed perl scripts to shbang perl directly, from Paul Gevers 2022-05-29 19:25:06 +02:00
smart_strip.sh

Installation tools
==================

This document describes how to create the various packages for lazarus
including the required freepascal packages (fpc and fpc-src).

--------------------------------------------------------------------------------
TGZ

Creating the fpc-src tgz:

  There are two ways to do it and so there are two scripts. The first downloads
  the fpc svn and packs it. The second uses an existing fpc svn directory,
  copies it, remove unnecessary files and packs it. The second script is
  therefore much faster, but it may miss removing every old, unnecessary files.
  
  The download and pack script:
  The script create_fpc_export_tgz.sh makes a svn export of the fpc.

  For 2.1.x: ./create_fpc_export_tgz.sh devel 05/20/04

  The 05/20/04 means may 20th 2004.
  
  The copy and pack script:
  The script create_fpc_tgz_from_local_dir.sh needs as parameter the fpc cvs
  directory and compresses it to a tgz. For example
  ./create_fpc_tgz_from_local_dir.sh ~/pascal/fpc fpc-2.0.1.tgz


Creating the lazarus tgz:

  There are two ways to do it and so there are two scripts. The first downloads
  the fpc cvs and packs it. The second uses an existing fpc cvs directory,
  copies it, remove unnecessary files and packs it. The second script is
  therefore much faster, but it may miss removing all old, unnecessary files.

  The download and pack script:
  The script create_lazarus_export_tgz.sh makes a cvs export of lazarus and
  compress it. For example:
  ./create_lazarus_export_tgz.sh lazarus-20030316.tgz
  
  The copy and pack script:
  The script create_lazarus_tgz_from_local_dir.sh needs as parameter the
  lazarus cvs directory and compress it to lazarus-0.8.5.tgz.

--------------------------------------------------------------------------------

RPM:

How to create RPM packages as normal user / non root:

  You don't need to be root to built rpm packages.
  You only need a ~/.rpmacros file overriding some values. The script
  <lazarusdir>/tools/install/rpm/create_nonroot_macros.sh will setup one. Do:

    []$ cd <lazarusdir>/tools/install/rpm
    []$ ./create_nonroot_macros.sh

  From now all new rpms will be built in ~/rpm/.


Creating the fpc and the fpc-src rpm:

  There are two versions of the compiler: the old 2.0.x and the new (but not
  yet released) developer version 2.1.x. To build them, you must install fpc
  first. Install the stable fpc release (2.0.x).
  Note: The 2.0.x can not be built with a 2.1.x compiler and the recommended
  startup compiler for the 2.1.x is the released fpc 2.0.x.

  If you have your own fpc sources you can build the fpc rpm with:

  []$ cd <lazarus_directory>/tools/install
  []$ ./create_fpc_rpm.sh nodocs /path/to/your/fpc/sources/fpc

  Then build the fpc-src rpm:

  []$ ./create_fpc-src_rpm.sh /path/to/your/fpc/sources/fpc

  Normally you can find the rpms under /usr/src/redhat/RPMS/i386/
  and /usr/src/redhat/SRPMS/.
  Or if you have a ~/.rpmmacros file the new rpm will be in ~/rpm/RPMS/i386/
  and ~/rpm/SRPMS/.


Creating the lazarus rpm:

  Important:
  If you have created a new fpc RPM, then you should install it *before* you
  build the lazarus RPM. Otherwise the compiled lazarus RPM is not compatible
  to the fpc RPM.

  []$ ./create_lazarus_rpm.sh

CHM files:
  Download chm files and put them into docs/chm/
  Then run

  []$ ./create_lazarus_rpm.sh chmhelp


Creating other system specific rpms:

  rpm --rebuild lazarus-0.9.20.src.rpm


--------------------------------------------------------------------------------

Debian:

NOTE:
  These packages are maintained by the Lazarus team. Debian distribution
  maintains its version of packages separately here:
  https://salsa.debian.org/pascal-team/lazarus/tree/master/debian
  https://salsa.debian.org/pascal-team/fpc/tree/master/debian

Creating the debian fpc and fpc-src packages:

  The create_fpc_deb.sh works nearly automatically. Required packaged:
    apt install fakeroot libgpm-dev libncurses-dev
  Become root and execute it:
  ./create_fpc_deb.sh fpc /path/to/fpc-git

  What it does: First it checks if the fpc source tgz is already created and
  if not, it automatically downloads it. Then it unpacks the
  source, compiles it and builds the deb. You can find the deb under
  in the current directory.

  Then do the same for fpc source deb:
  ./create_fpc_deb.sh fpc-src /path/to/fpc-git

Creating the debian lazarus package:

  Important:
  If you have created new fpc debs, then you should install them, *before* you
  build the lazarus deb. Otherwise the compiled lazarus deb is not compatible
  to the fpc debs.

  []$ ./create_lazarus_deb.sh

CHM files:
  Download chm files and put them into docs/chm/
  Then run

  []$ ./create_lazarus_deb.sh chmhelp

--------------------------------------------------------------------------------

Mac OS X:

see macosx/README.txt