diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2015-12-20 22:31:52 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-12-28 21:57:15 +0100 |
commit | a986e09497d1ddc3c8fecdf8feabc516fd345cfc (patch) | |
tree | 3821bc7a3d2992620ab98bc6776e155805c96fc5 /package/libasplib/Config.in | |
parent | d7327c69c8459adf0b878205e0a2ab63c60d02bd (diff) | |
download | buildroot-a986e09497d1ddc3c8fecdf8feabc516fd345cfc.tar.gz buildroot-a986e09497d1ddc3c8fecdf8feabc516fd345cfc.zip |
package/libasplib: new package
Needed for upcoming kodi-adsp-biquad-filters package
[Thomas:
- add dependency on i386 || x86-64 since the <cpuid.h> header is
needed
- add hash file.]
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/libasplib/Config.in')
-rw-r--r-- | package/libasplib/Config.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/package/libasplib/Config.in b/package/libasplib/Config.in new file mode 100644 index 0000000000..71ccfa0176 --- /dev/null +++ b/package/libasplib/Config.in @@ -0,0 +1,14 @@ +config BR2_PACKAGE_LIBASPLIB + bool "libasplib" + depends on BR2_INSTALL_LIBSTDCPP + # needs <cpuid.h> from the compiler + depends on BR2_i386 || BR2_x86_64 + help + asplib (Achim's Signal Processing LIBrary), is a small and + lightweight C++ library for digital signal processing. + + https://github.com/kodi-adsp/asplib + +comment "asplib needs a toolchain w/ C++" + depends on !BR2_INSTALL_LIBSTDCPP + depends on BR2_i386 || BR2_x86_64 |