]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
libplist: new package
authorMaxime Hadjinlian <maxime.hadjinlian@gmail.com>
Sun, 19 Jan 2014 21:04:00 +0000 (22:04 +0100)
committerPeter Korsgaard <peter@korsgaard.com>
Tue, 21 Jan 2014 16:27:38 +0000 (17:27 +0100)
libplist is a client for manipulating Apple Property List (.plist) files
This package was originally found at : https://github.com/huceke/buildroot-rbp
By gimli <ebsi4711@gmail.com>

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Cc: gimli <ebsi4711@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/Config.in
package/libplist/Config.in [new file with mode: 0644]
package/libplist/libplist.mk [new file with mode: 0644]

index 8495cddf60b9b9b5e4a96054930d2de04dfb1fcb..cd869d840b9ce3853209b19ce5ae51cadf0571bb 100644 (file)
@@ -735,6 +735,7 @@ source "package/libical/Config.in"
 source "package/liblog4c-localtime/Config.in"
 source "package/libnspr/Config.in"
 source "package/libpfm4/Config.in"
+source "package/libplist/Config.in"
 source "package/libpthsem/Config.in"
 source "package/libseccomp/Config.in"
 source "package/libsigc/Config.in"
diff --git a/package/libplist/Config.in b/package/libplist/Config.in
new file mode 100644 (file)
index 0000000..c9d511b
--- /dev/null
@@ -0,0 +1,12 @@
+config BR2_PACKAGE_LIBPLIST
+       bool "libplist"
+       select BR2_PACKAGE_LIBXML2
+       depends on BR2_INSTALL_LIBSTDCPP
+       help
+         libplist is a client for manipulating Apple Property List
+         (.plist) files
+
+         http://cgit.sukimashita.com/libplist.git
+
+comment "libplist needs a toolchain w/ C++"
+       depends on !BR2_INSTALL_LIBSTDCPP
diff --git a/package/libplist/libplist.mk b/package/libplist/libplist.mk
new file mode 100644 (file)
index 0000000..87f09c6
--- /dev/null
@@ -0,0 +1,15 @@
+################################################################################
+#
+# libplist
+#
+################################################################################
+
+LIBPLIST_VERSION = 1.6
+LIBPLIST_SITE = http://cgit.sukimashita.com/libplist.git/snapshot
+LIBPLIST_DEPENDENCIES = libxml2
+LIBPLIST_INSTALL_STAGING = YES
+LIBPLIST_MAKE = $(MAKE1)
+LIBPLIST_LICENSE = LGPLv2.1+
+LIBPLIST_LICENSE_FILES = COPYING
+
+$(eval $(cmake-package))