* README.md
* config/global.mk
* contrib/gtwvw/doc/gtwvw.txt
* contrib/hbwin/tests/ole.prg
* contrib/hbzebra/tests/cairo.prg
* contrib/hbzebra/tests/harupdf.prg
* contrib/hbzebra/tests/wingdi.prg
* package/harbour-wce.spec.in
* package/harbour-win.spec.in
* package/harbour.rb
* package/harbour.spec
* package/mpkg_win.nsi
* package/winuni/mpkg_win_uni.nsi
* src/3rd/zlib/ChangeLog.txt
* src/compiler/hbusage.c
* src/pp/hbpp.c
* tests/html.prg
* changed Harbour Project website URL references to
https://harbour.github.io/
This change is very symbolic mark of time passing, but it had to be
done. Original harbour-project.org domain went out from reach
together with Phil Barnett passing away on April 16, 2015.
Respect Phil, RIP.
Phil's efforts are directly tied to The Harbour Project origins.
To memorize him, please take a tour to archived The Oasis
https://harbour.github.io/the-oasis/
167 lines
5.0 KiB
RPMSpec
167 lines
5.0 KiB
RPMSpec
# ---------------------------------------------------------------
|
|
# Copyright 2007 Przemyslaw Czerpak (druzus/at/priv.onet.pl),
|
|
# Harbour-WinCE cross build RPM spec file
|
|
#
|
|
# See LICENSE.txt for licensing terms.
|
|
# ---------------------------------------------------------------
|
|
|
|
######################################################################
|
|
## Definitions.
|
|
######################################################################
|
|
|
|
%define name harbour-wce
|
|
%define version 3.2.0
|
|
%define releasen dev
|
|
|
|
# Workaround for the problem of /usr/bin/strip not handling PE binaries.
|
|
%define hb_ccpath /opt/mingw32ce/bin
|
|
%define hb_ccpref arm-wince-mingw32ce-
|
|
%define __strip %{hb_ccpath}/%{hb_ccpref}strip
|
|
%define __objdump %{hb_ccpath}/%{hb_ccpref}objdump
|
|
|
|
######################################################################
|
|
## Preamble.
|
|
######################################################################
|
|
|
|
Summary: Free software Clipper compatible compiler
|
|
Summary(pl): Darmowy kompilator kompatybilny z językiem Clipper.
|
|
Name: %{name}
|
|
Version: %{version}
|
|
Release: %{releasen}
|
|
License: GPL (plus exception)
|
|
Group: Development/Languages
|
|
URL: https://harbour.github.io/
|
|
Source: harbour-%{version}.src.tar.gz
|
|
BuildRequires: gcc binutils
|
|
Requires: gcc binutils sh-utils cegcc-mingw32ce harbour = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
Provides: %{name}
|
|
BuildRoot: /tmp/%{name}-%{version}-root
|
|
|
|
%define _noautoreq 'libharbour.*'
|
|
|
|
%description
|
|
Harbour is a CA-Cl*pper compatible compiler for multiple platforms. This
|
|
package includes a compiler, pre-processor, header files, virtual machine
|
|
and libraries for creating WinCE application in Linux box using MinGW-CE
|
|
GCC port.
|
|
|
|
%description -l pl
|
|
Harbour to kompatybilny z językiem CA-Cl*pper kompilator rozwijany na
|
|
wielu różnych platformach. Ten pakiet zawiera kompilator, preprocesor,
|
|
zbiory nagłówkowe, wirtualn+ maszynę oraz biblioteki pozwalaj+ce na
|
|
tworzenie aplikacji dla WinCE-PocketPC przy użyciu MinGW-CE GCC.
|
|
|
|
|
|
######################################################################
|
|
## Preperation.
|
|
######################################################################
|
|
|
|
%prep
|
|
%setup -c harbour
|
|
rm -fR $RPM_BUILD_ROOT
|
|
|
|
######################################################################
|
|
## Build.
|
|
######################################################################
|
|
|
|
%build
|
|
|
|
export HB_BUILD_CONTRIBS=no
|
|
export HB_PLATFORM=linux
|
|
export HB_COMPILER=gcc
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
unset HB_COMPILER
|
|
unset HB_BUILD_CONTRIBS
|
|
|
|
export HB_BUILD_PARTS=lib
|
|
export HB_PLATFORM=wce
|
|
export HB_HOST_BIN="$(pwd)/bin/linux/gcc"
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
######################################################################
|
|
## Install.
|
|
######################################################################
|
|
|
|
%install
|
|
|
|
# Install Harbour itself.
|
|
|
|
unset HB_COMPILER
|
|
|
|
export HB_BUILD_PARTS=lib
|
|
export HB_PLATFORM=wce
|
|
export HB_HOST_BIN="$(pwd)/bin/linux/gcc"
|
|
|
|
export HB_INSTALL_PKG_ROOT=${RPM_BUILD_ROOT}
|
|
export HB_INSTALL_PREFIX=${RPM_BUILD_ROOT}
|
|
export HB_INSTALL_BIN=${RPM_BUILD_ROOT}/%{_bindir}
|
|
export HB_INSTALL_INC=${RPM_BUILD_ROOT}/%{_includedir}/%{name}
|
|
export HB_INSTALL_LIB=${RPM_BUILD_ROOT}/%{_libdir}/%{name}
|
|
export HB_INSTALL_DYN=${HB_INSTALL_LIB}
|
|
export HB_INSTALL_DOC=no
|
|
export HB_BUILD_STRIP=lib
|
|
|
|
mkdir -p $HB_INSTALL_BIN
|
|
export HB_MK2WRAP=$HB_INSTALL_BIN/hbcemk2
|
|
export HB_INSTALL_SCRIPT=$HB_MK2WRAP.tmp
|
|
|
|
echo "#!/bin/sh" > $HB_INSTALL_SCRIPT
|
|
echo "echo export HB_CCPREFIX=\$HB_CCPREFIX >> $HB_MK2WRAP" > $HB_INSTALL_SCRIPT
|
|
chmod +x $HB_INSTALL_SCRIPT
|
|
|
|
echo "#!/bin/sh" > $HB_MK2WRAP
|
|
echo "export HB_INSTALL_LIB=%{_libdir}/%{name}" >> $HB_MK2WRAP
|
|
echo "export HB_INSTALL_INC=%{_includedir}/%{name}" >> $HB_MK2WRAP
|
|
|
|
make install %{?_smp_mflags}
|
|
|
|
echo "hbmk2 -plat=wce \"\$@\"" >> $HB_MK2WRAP
|
|
rm -fR $HB_INSTALL_SCRIPT
|
|
|
|
######################################################################
|
|
## Post install
|
|
######################################################################
|
|
#%post lib
|
|
#/sbin/ldconfig
|
|
|
|
######################################################################
|
|
## Post uninstall
|
|
######################################################################
|
|
#%postun lib
|
|
#/sbin/ldconfig
|
|
|
|
######################################################################
|
|
## Clean.
|
|
######################################################################
|
|
|
|
%clean
|
|
rm -fR $RPM_BUILD_ROOT
|
|
|
|
######################################################################
|
|
## File list.
|
|
######################################################################
|
|
|
|
%files
|
|
%defattr(755,root,root,755)
|
|
%{_bindir}/*
|
|
|
|
%defattr(644,root,root,755)
|
|
%dir %{_includedir}/%{name}
|
|
%{_includedir}/%{name}/*
|
|
%dir %{_libdir}/%{name}
|
|
%{_libdir}/%{name}/*.a
|
|
|
|
%defattr(755,root,root,755)
|
|
%{_libdir}/%{name}/*.dll
|
|
|
|
######################################################################
|
|
## Spec file Changelog.
|
|
######################################################################
|
|
|
|
%changelog
|
|
* Thu Oct 23 2007 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
|
|
- initial release
|