Compare commits

...

3 Commits

Author SHA1 Message Date
Vadim Yanitskiy 912827c9da build: include README.md into the release tarball
Change-Id: I02be5d5cf8cc76feb6880eac90000ff6eba5a580
2024-01-26 23:22:54 +07:00
Vadim Yanitskiy 6964e3657c src/Makefile.am: libraries shall not be in LDFLAGS but in LIBADD
Change-Id: I077661d2539d6f978a261575c555af86b65f30e3
2023-03-13 04:38:03 +07:00
Oliver Smith 1dfd800e0c contrib/libosmo-dsp.spec.in: various fixes
* remove reference to non-existing HTML_TIMESTAMP.diff
* change name libosmo-dsp -> libosmodsp, so the assumed directory name
  inside the tarball is correct, and for consistency with the debian
  package
* rename the file to libosmodsp.spec for consistency
* fix gitignore entry

Change-Id: Id2a4b9406cc492d9fb7a5d2e9da804990bd22530
2022-07-18 12:04:14 +02:00
5 changed files with 7 additions and 7 deletions

2
.gitignore vendored
View File

@ -31,4 +31,4 @@ Doxyfile
.*.swp
doc/
contrib/libosmocore.spec
contrib/libosmodsp.spec

View File

@ -14,7 +14,8 @@ dist-hook:
EXTRA_DIST = \
.version \
contrib/libosmo-dsp.spec.in \
README.md \
contrib/libosmodsp.spec.in \
debian \
git-version-gen \
$(NULL)

View File

@ -81,7 +81,7 @@ AC_CONFIG_HEADER(config.h)
AC_OUTPUT(
libosmodsp.pc
contrib/libosmo-dsp.spec
contrib/libosmodsp.spec
include/Makefile
include/osmocom/Makefile
include/osmocom/dsp/Makefile

View File

@ -6,7 +6,7 @@
# This file is under MIT license
%define libname libosmodsp0
Name: libosmo-dsp
Name: libosmodsp
Version: @VERSION@
Release: 0
Summary: SDR DSP primitives
@ -14,7 +14,6 @@ License: GPL-2.0-only
Group: Productivity/Hamradio/Other
URL: https://osmocom.org/projects/libosmo-dsp
Source: %{name}-%{version}.tar.xz
Patch0: HTML_TIMESTAMP.diff
BuildRequires: automake >= 1.6
BuildRequires: doxygen
BuildRequires: fdupes
@ -52,7 +51,6 @@ A library with SDR DSP primitives headers - Documentation
%prep
%setup -q
%patch0 -p1
%build
echo "%version" >.tarball-version

View File

@ -8,4 +8,5 @@ AM_CFLAGS = -Wall -ffast-math $(FFTW3F_CFLAGS)
lib_LTLIBRARIES = libosmodsp.la
libosmodsp_la_SOURCES = cfile.c cxvec.c cxvec_math.c iqbal.c
libosmodsp_la_LDFLAGS = -version-info $(LIBVERSION) $(FFTW3F_LIBS)
libosmodsp_la_LDFLAGS = -version-info $(LIBVERSION)
libosmodsp_la_LIBADD = $(FFTW3F_LIBS)