From 328386cf362c562be08255d8d5d5cb8ab9a7452f Mon Sep 17 00:00:00 2001 From: Ribbon Date: Fri, 20 Sep 2024 00:49:05 +0000 Subject: [PATCH] Add recipes --- recipes/wip/fuse/e2fsprogs/recipe.toml | 6 ++++++ recipes/wip/fuse/ifuse/recipe.toml | 10 ++++++++++ recipes/wip/fuse/jmtpfs/recipe.toml | 9 +++++++++ recipes/wip/libs/mobile/libimobiledevice/recipe.toml | 11 +++++++++++ recipes/wip/libs/mobile/libusbmuxd/recipe.toml | 8 ++++++++ recipes/wip/libs/other/libplist/recipe.toml | 11 +++++++++++ recipes/wip/libs/other/libtatsu/recipe.toml | 9 +++++++++ recipes/wip/system/pik/recipe.toml | 5 +++++ 8 files changed, 69 insertions(+) create mode 100644 recipes/wip/fuse/e2fsprogs/recipe.toml create mode 100644 recipes/wip/fuse/ifuse/recipe.toml create mode 100644 recipes/wip/fuse/jmtpfs/recipe.toml create mode 100644 recipes/wip/libs/mobile/libimobiledevice/recipe.toml create mode 100644 recipes/wip/libs/mobile/libusbmuxd/recipe.toml create mode 100644 recipes/wip/libs/other/libplist/recipe.toml create mode 100644 recipes/wip/libs/other/libtatsu/recipe.toml create mode 100644 recipes/wip/system/pik/recipe.toml diff --git a/recipes/wip/fuse/e2fsprogs/recipe.toml b/recipes/wip/fuse/e2fsprogs/recipe.toml new file mode 100644 index 000000000..35606ec41 --- /dev/null +++ b/recipes/wip/fuse/e2fsprogs/recipe.toml @@ -0,0 +1,6 @@ +#TODO maybe wrong template +# build instructions - https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git/tree/INSTALL +[source] +tar = "http://prdownloads.sourceforge.net/e2fsprogs/e2fsprogs-1.47.1.tar.gz" +[build] +template = "configure" diff --git a/recipes/wip/fuse/ifuse/recipe.toml b/recipes/wip/fuse/ifuse/recipe.toml new file mode 100644 index 000000000..cf08e3f9f --- /dev/null +++ b/recipes/wip/fuse/ifuse/recipe.toml @@ -0,0 +1,10 @@ +#TODO not compiled or tested +[source] +tar = "https://github.com/libimobiledevice/ifuse/releases/download/1.1.4/ifuse-1.1.4.tar.bz2" +[build] +template = "configure" +dependencies = [ + "libfuse3", + "libplist", + "libimobiledevice", +] diff --git a/recipes/wip/fuse/jmtpfs/recipe.toml b/recipes/wip/fuse/jmtpfs/recipe.toml new file mode 100644 index 000000000..e7b7da382 --- /dev/null +++ b/recipes/wip/fuse/jmtpfs/recipe.toml @@ -0,0 +1,9 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/JasonFerrara/jmtpfs" +[build] +template = "configure" +dependencies = [ + "libmtp", + "libmagic", +] diff --git a/recipes/wip/libs/mobile/libimobiledevice/recipe.toml b/recipes/wip/libs/mobile/libimobiledevice/recipe.toml new file mode 100644 index 000000000..6e8e44195 --- /dev/null +++ b/recipes/wip/libs/mobile/libimobiledevice/recipe.toml @@ -0,0 +1,11 @@ +#TODO not compiled or tested +[source] +tar = "https://github.com/libimobiledevice/libimobiledevice/releases/download/1.3.0/libimobiledevice-1.3.0.tar.bz2" +[build] +template = "configure" +dependencies = [ + "libtatsu", + "libplist", + "libusbmuxd", + "openssl1", +] diff --git a/recipes/wip/libs/mobile/libusbmuxd/recipe.toml b/recipes/wip/libs/mobile/libusbmuxd/recipe.toml new file mode 100644 index 000000000..b690aec29 --- /dev/null +++ b/recipes/wip/libs/mobile/libusbmuxd/recipe.toml @@ -0,0 +1,8 @@ +#TODO not compiled or tested +[source] +tar = "https://github.com/libimobiledevice/libusbmuxd/releases/download/2.1.0/libusbmuxd-2.1.0.tar.bz2" +[build] +template = "configure" +dependencies = [ + "libplist", +] diff --git a/recipes/wip/libs/other/libplist/recipe.toml b/recipes/wip/libs/other/libplist/recipe.toml new file mode 100644 index 000000000..91fd40a56 --- /dev/null +++ b/recipes/wip/libs/other/libplist/recipe.toml @@ -0,0 +1,11 @@ +#TODO not compiled or tested +[source] +tar = "https://github.com/libimobiledevice/libplist/releases/download/2.6.0/libplist-2.6.0.tar.bz2" +[build] +template = "custom" +script = """ +COOKBOOK_CONFIGURE_FLAGS+=( + --without-cython +) +cookbook_configure +""" diff --git a/recipes/wip/libs/other/libtatsu/recipe.toml b/recipes/wip/libs/other/libtatsu/recipe.toml new file mode 100644 index 000000000..64afe14b3 --- /dev/null +++ b/recipes/wip/libs/other/libtatsu/recipe.toml @@ -0,0 +1,9 @@ +#TODO not compiled or tested +[source] +tar = "https://github.com/libimobiledevice/libtatsu/releases/download/1.0.3/libtatsu-1.0.3.tar.bz2" +[build] +template = "configure" +dependencies = [ + "libplist", + "curl", +] diff --git a/recipes/wip/system/pik/recipe.toml b/recipes/wip/system/pik/recipe.toml new file mode 100644 index 000000000..1c1e04f3a --- /dev/null +++ b/recipes/wip/system/pik/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/jacek-kurlit/pik" +[build] +template = "cargo"