mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 11:38:04 +02:00
rpm: fixed build on old fedora
This commit is contained in:
parent
9265aa7ab7
commit
37fdc3df8e
@ -6,7 +6,7 @@ set -e
|
||||
#------------------------------------------------------------------------------
|
||||
# parse parameters
|
||||
#------------------------------------------------------------------------------
|
||||
Usage="Usage: $0 [nodocs] [notemp] <FPCSrcDir> [release]"
|
||||
Usage="Usage: $0 [nodocs] [notemp] [hasbuildid] <FPCSrcDir> [release]"
|
||||
|
||||
PkgName=fpc-laz
|
||||
|
||||
@ -22,6 +22,13 @@ if [ "x$1" = "xnotemp" ]; then
|
||||
shift
|
||||
fi
|
||||
|
||||
HasBuildID=no
|
||||
if [ "x$1" = "xhasbuildid" ]; then
|
||||
HasBuildID=yes
|
||||
shift
|
||||
fi
|
||||
|
||||
|
||||
PkgType=rpm
|
||||
|
||||
FPCSrcDir=$1
|
||||
@ -77,7 +84,9 @@ FPCVersion="$CompilerVersion.$CompilerRelease.$CompilerPatch"
|
||||
echo " $CompilerVersionStr-$FPCRelease"
|
||||
|
||||
Arch=$(rpm --eval "%{_arch}")
|
||||
|
||||
if [ "$Arch" = "i386" ]; then
|
||||
Arch=i686
|
||||
fi
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# patch sources
|
||||
@ -107,7 +116,11 @@ cat $SpecFileTemplate | \
|
||||
-e 's/^\%{fpcdir}\/samplecfg .*/%{fpcdir}\/samplecfg %{_libdir}\/fpc\/\\\$version/' \
|
||||
> $SpecFile
|
||||
# -e 's/\(%define builddocdir.*\)/%define __strip smart_strip.sh\n\n\1/' \
|
||||
|
||||
if [ "$HasBuildID" = "yes" ]; then
|
||||
sed -e 's/%undefine _missing_build-ids_terminate_build//' -i $SpecFile
|
||||
fi
|
||||
|
||||
|
||||
SrcTGZ=$(rpm/get_rpm_source_dir.sh)/SOURCES/fpc-$CompilerVersionStr-$FPCRelease.source.tar.gz
|
||||
echo "creating $SrcTGZ ..."
|
||||
tar czf $SrcTGZ -C $TmpDir $PkgName
|
||||
|
@ -6,7 +6,7 @@ Group: Development/Languages
|
||||
Source: %{name}-%{version}-%{release}.source.tar.gz
|
||||
Summary: FreePascal sources
|
||||
Packager: Mattias Gaertner (mattias@freepascal.org)
|
||||
URL: http://www.freepascal.org/
|
||||
URL: https://www.freepascal.org/
|
||||
BuildRoot: %{_tmppath}/%{name}-build%{version}
|
||||
Conflicts: fpc-src
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user