package/libsilk: new package
authorBernd Kuhls <bernd.kuhls@t-online.de>
Tue, 11 Aug 2015 18:16:48 +0000 (20:16 +0200)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sat, 29 Aug 2015 08:33:18 +0000 (10:33 +0200)
[Thomas: fix license, it's BSD-3c.]

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/Config.in
package/libsilk/Config.in [new file with mode: 0644]
package/libsilk/libsilk.mk [new file with mode: 0644]

index 810f4aeea0057dbea42ff1490dfc46e3f6ef0931..59125631e01e1ce240d205fa9ab0d59034b0c5c3 100644 (file)
@@ -707,6 +707,7 @@ menu "Audio/Sound"
        source "package/libreplaygain/Config.in"
        source "package/libsamplerate/Config.in"
        source "package/libsidplay2/Config.in"
+       source "package/libsilk/Config.in"
        source "package/libsndfile/Config.in"
        source "package/libsoxr/Config.in"
        source "package/libvorbis/Config.in"
diff --git a/package/libsilk/Config.in b/package/libsilk/Config.in
new file mode 100644 (file)
index 0000000..10fe03a
--- /dev/null
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_LIBSILK
+       bool "libsilk"
+       help
+         SILK is an audio compression format and audio codec.
+
+         http://tools.ietf.org/html/draft-vos-silk-01
diff --git a/package/libsilk/libsilk.mk b/package/libsilk/libsilk.mk
new file mode 100644 (file)
index 0000000..eefdf8f
--- /dev/null
@@ -0,0 +1,16 @@
+################################################################################
+#
+# libsilk
+#
+################################################################################
+
+LIBSILK_VERSION = 4268a02240c35c6055b0f237c46b09b2dcf79e45
+# we use the FreeSwitch fork because it contains pkgconf support
+LIBSILK_SITE = https://freeswitch.org/stash/scm/sd/libsilk.git
+LIBSILK_SITE_METHOD = git
+LIBSILK_LICENSE = BSD-3c
+LIBSILK_LICENSE_FILES = COPYING
+LIBSILK_AUTORECONF = YES
+LIBSILK_INSTALL_STAGING = YES
+
+$(eval $(autotools-package))