summaryrefslogtreecommitdiffstats
path: root/bare/config/devel/texane-stlink-1.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'bare/config/devel/texane-stlink-1.cfg')
-rw-r--r--bare/config/devel/texane-stlink-1.cfg68
1 files changed, 0 insertions, 68 deletions
diff --git a/bare/config/devel/texane-stlink-1.cfg b/bare/config/devel/texane-stlink-1.cfg
deleted file mode 100644
index 9d6a157..0000000
--- a/bare/config/devel/texane-stlink-1.cfg
+++ /dev/null
@@ -1,68 +0,0 @@
-#
-# 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/
-
-#
-# Source
-#
-%source set stlink https://api.github.com/repos/texane/stlink/texane-stlink-%{stlink_version}.tar.gz
-%patch add stlink texane-stlink-3494c11-2.diff
-
-#
-# Prepare the source code.
-#
-%prep
- %source setup stlink -q -c -n %{name}-%{version}
- cd texane-stlink-%{stlink_version}
- %patch setup stlink -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_CFLAGS" \
- 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 ..