* [Buildroot] [PATCH] unrar: new package
@ 2016-01-06 12:49 Gustavo Zacarias
2016-02-02 0:04 ` Peter Korsgaard
0 siblings, 1 reply; 2+ messages in thread
From: Gustavo Zacarias @ 2016-01-06 12:49 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/Config.in | 1 +
package/unrar/Config.in | 13 +++++++++++++
package/unrar/unrar.hash | 2 ++
package/unrar/unrar.mk | 22 ++++++++++++++++++++++
4 files changed, 38 insertions(+)
create mode 100644 package/unrar/Config.in
create mode 100644 package/unrar/unrar.hash
create mode 100644 package/unrar/unrar.mk
diff --git a/package/Config.in b/package/Config.in
index 5f331d7..dba9ef3 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -56,6 +56,7 @@ endif
source "package/lz4/Config.in"
source "package/lzip/Config.in"
source "package/lzop/Config.in"
+ source "package/unrar/Config.in"
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
source "package/unzip/Config.in"
endif
diff --git a/package/unrar/Config.in b/package/unrar/Config.in
new file mode 100644
index 0000000..29696c3
--- /dev/null
+++ b/package/unrar/Config.in
@@ -0,0 +1,13 @@
+config BR2_PACKAGE_UNRAR
+ bool "unrar"
+ depends on BR2_INSTALL_LIBSTDCPP
+ depends on BR2_TOOLCHAIN_HAS_THREADS
+ depends on BR2_USE_WCHAR
+ help
+ RAR file uncompressor.
+
+ http://www.rarlab.com/rar_add.htm
+
+comment "unrar needs a toolchain w/ C++, wchar, threads"
+ depends on !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP \
+ || !BR2_TOOLCHAIN_HAS_THREADS
diff --git a/package/unrar/unrar.hash b/package/unrar/unrar.hash
new file mode 100644
index 0000000..4490d70
--- /dev/null
+++ b/package/unrar/unrar.hash
@@ -0,0 +1,2 @@
+# Locally computed:
+sha256 ff593728aed0ac865908b8ea52cff449a4c298f095db2f3d27438ffbc3e35d5b unrarsrc-5.3.9.tar.gz
diff --git a/package/unrar/unrar.mk b/package/unrar/unrar.mk
new file mode 100644
index 0000000..d0112e9
--- /dev/null
+++ b/package/unrar/unrar.mk
@@ -0,0 +1,22 @@
+################################################################################
+#
+# unrar
+#
+################################################################################
+
+UNRAR_VERSION = 5.3.9
+UNRAR_SOURCE = unrarsrc-$(UNRAR_VERSION).tar.gz
+UNRAR_SITE = http://www.rarlab.com/rar
+UNRAR_LICENSE = unrar
+UNRAR_LICENSE_FILES = license.txt
+
+define UNRAR_BUILD_CMDS
+ $(MAKE) CXX="$(TARGET_CXX)" STRIP="/bin/true" \
+ CXXFLAGS="$(TARGET_CXXFLAGS) -pthread" -C $(@D)
+endef
+
+define UNRAR_INSTALL_TARGET_CMDS
+ $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR)/usr install
+endef
+
+$(eval $(generic-package))
--
2.4.10
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Buildroot] [PATCH] unrar: new package
2016-01-06 12:49 [Buildroot] [PATCH] unrar: new package Gustavo Zacarias
@ 2016-02-02 0:04 ` Peter Korsgaard
0 siblings, 0 replies; 2+ messages in thread
From: Peter Korsgaard @ 2016-02-02 0:04 UTC (permalink / raw)
To: buildroot
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
> package/Config.in | 1 +
> package/unrar/Config.in | 13 +++++++++++++
> package/unrar/unrar.hash | 2 ++
> package/unrar/unrar.mk | 22 ++++++++++++++++++++++
> 4 files changed, 38 insertions(+)
> create mode 100644 package/unrar/Config.in
> create mode 100644 package/unrar/unrar.hash
> create mode 100644 package/unrar/unrar.mk
> diff --git a/package/Config.in b/package/Config.in
> index 5f331d7..dba9ef3 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -56,6 +56,7 @@ endif
> source "package/lz4/Config.in"
> source "package/lzip/Config.in"
> source "package/lzop/Config.in"
> + source "package/unrar/Config.in"
> if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
> source "package/unzip/Config.in"
> endif
> diff --git a/package/unrar/Config.in b/package/unrar/Config.in
> new file mode 100644
> index 0000000..29696c3
> --- /dev/null
> +++ b/package/unrar/Config.in
> @@ -0,0 +1,13 @@
> +config BR2_PACKAGE_UNRAR
> + bool "unrar"
> + depends on BR2_INSTALL_LIBSTDCPP
> + depends on BR2_TOOLCHAIN_HAS_THREADS
> + depends on BR2_USE_WCHAR
> + help
> + RAR file uncompressor.
> +
> + http://www.rarlab.com/rar_add.htm
> +
> +comment "unrar needs a toolchain w/ C++, wchar, threads"
> + depends on !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP \
> + || !BR2_TOOLCHAIN_HAS_THREADS
> diff --git a/package/unrar/unrar.hash b/package/unrar/unrar.hash
> new file mode 100644
> index 0000000..4490d70
> --- /dev/null
> +++ b/package/unrar/unrar.hash
> @@ -0,0 +1,2 @@
> +# Locally computed:
> +sha256 ff593728aed0ac865908b8ea52cff449a4c298f095db2f3d27438ffbc3e35d5b unrarsrc-5.3.9.tar.gz
> diff --git a/package/unrar/unrar.mk b/package/unrar/unrar.mk
> new file mode 100644
> index 0000000..d0112e9
> --- /dev/null
> +++ b/package/unrar/unrar.mk
> @@ -0,0 +1,22 @@
> +################################################################################
> +#
> +# unrar
> +#
> +################################################################################
> +
> +UNRAR_VERSION = 5.3.9
> +UNRAR_SOURCE = unrarsrc-$(UNRAR_VERSION).tar.gz
> +UNRAR_SITE = http://www.rarlab.com/rar
> +UNRAR_LICENSE = unrar
> +UNRAR_LICENSE_FILES = license.txt
> +
> +define UNRAR_BUILD_CMDS
> + $(MAKE) CXX="$(TARGET_CXX)" STRIP="/bin/true" \
> + CXXFLAGS="$(TARGET_CXXFLAGS) -pthread" -C $(@D)
The makefile also uses LDFLAGS but you didn't pass TARGET_LDFLAGS.
Committed with that fixed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-02-02 0:04 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-06 12:49 [Buildroot] [PATCH] unrar: new package Gustavo Zacarias
2016-02-02 0:04 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox