]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
unrar: new package
authorGustavo Zacarias <gustavo@zacarias.com.ar>
Wed, 6 Jan 2016 12:49:00 +0000 (09:49 -0300)
committerPeter Korsgaard <peter@korsgaard.com>
Tue, 2 Feb 2016 00:02:18 +0000 (01:02 +0100)
[Peter: also pass TARGET_LDFLAGS]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/Config.in
package/unrar/Config.in [new file with mode: 0644]
package/unrar/unrar.hash [new file with mode: 0644]
package/unrar/unrar.mk [new file with mode: 0644]

index 09c2b40b3c4dac8a97be4e5c018c0bd2fbad695a..a10d9266c09653e13e8a90c0de0bad2f957b1c9d 100644 (file)
@@ -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 (file)
index 0000000..29696c3
--- /dev/null
@@ -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 (file)
index 0000000..4490d70
--- /dev/null
@@ -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 (file)
index 0000000..89dff9b
--- /dev/null
@@ -0,0 +1,23 @@
+################################################################################
+#
+# 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" \
+               LDFLAGS="$(TARGET_LDFLAGS) -pthread" -C $(@D)
+endef
+
+define UNRAR_INSTALL_TARGET_CMDS
+       $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR)/usr install
+endef
+
+$(eval $(generic-package))