mirror of
https://git.rtems.org/rtems-source-builder
synced 2024-10-09 07:15:10 +08:00
71 lines
1.5 KiB
INI
71 lines
1.5 KiB
INI
#
|
|
# ST-Link Version 1.
|
|
#
|
|
# This configuration file configure's, make's and install's SL-Link.
|
|
#
|
|
|
|
%if %{release} == %{nil}
|
|
%define release 1
|
|
%endif
|
|
|
|
%include %{_configdir}/base.cfg
|
|
|
|
%define stlink_version 3494c11
|
|
|
|
Name: texane-stlink-%{stlink_version}-%{release}
|
|
Summary: ST-Link v%{stlink_version} for host %{_host}
|
|
Version: %{stlink_version}
|
|
Release: %{release}
|
|
URL: https://github.com/texane/stlink/
|
|
BuildRoot: %{_tmppath}/%{name}-root-%(%{__id_u} -n)
|
|
|
|
#
|
|
# Source
|
|
#
|
|
Source0: https://api.github.com/repos/texane/stlink/texane-stlink-%{stlink_version}.tar.gz
|
|
VersionControl0: git clone https://github.com/texane/stlink.git
|
|
Patch0: texane-stlink-3494c11-2.diff
|
|
|
|
#
|
|
# Prepare the source code.
|
|
#
|
|
%prep
|
|
%setup -q -c -n %{name}-%{version}
|
|
cd texane-stlink-%{stlink_version}
|
|
%{?patch0:%patch0 -p1}
|
|
cd ..
|
|
|
|
%build
|
|
export PATH="%{_bindir}:${PATH}"
|
|
|
|
cd texane-stlink-%{stlink_version}
|
|
|
|
./autogen.sh
|
|
|
|
%if "%{_build}" != "%{_host}"
|
|
CFLAGS_FOR_BUILD="-g -O2 -Wall" \
|
|
%endif
|
|
CPPFLAGS="-I $SB_TMPPREFIX/include/libusb-1.0" \
|
|
CFLAGS="$SB_OPT_FLAGS" \
|
|
LDFLAGS="-L $SB_TMPPREFIX/lib" \
|
|
./configure \
|
|
--build=%{_build} --host=%{_host} \
|
|
--verbose \
|
|
--prefix=%{_prefix} --bindir=%{_bindir} \
|
|
--exec-prefix=%{_exec_prefix} \
|
|
--includedir=%{_includedir} --libdir=%{_libdir} \
|
|
--mandir=%{_mandir} --infodir=%{_infodir}
|
|
|
|
%{__make} %{?_smp_mflags} all
|
|
|
|
cd ..
|
|
|
|
%install
|
|
export PATH="%{_bindir}:${PATH}"
|
|
rm -rf $SB_BUILD_ROOT
|
|
|
|
cd texane-stlink-%{stlink_version}
|
|
%{__make} DESTDIR=$SB_BUILD_ROOT install
|
|
|
|
cd ..
|