@dagu-org/dagu-linux-ppc64 1.17.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +21 -0
  2. package/bin/dagu +0 -0
  3. package/package.json +16 -0
package/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # @dagu-org/dagu-linux-ppc64
2
+
3
+ Platform-specific binary package for Dagu.
4
+
5
+ This package contains the pre-compiled Dagu binary for Linux PowerPC 64-bit.
6
+
7
+ ## Installation
8
+
9
+ **Do not install this package directly!**
10
+
11
+ This package is automatically installed as an optional dependency when you install the main package:
12
+
13
+ ```bash
14
+ npm install @dagu-org/dagu
15
+ ```
16
+
17
+ ## About
18
+
19
+ This is a platform-specific distribution of [Dagu](https://github.com/dagu-org/dagu), a powerful workflow orchestration engine.
20
+
21
+ For documentation and usage, please see the main package: [@dagu-org/dagu](https://www.npmjs.com/package/@dagu-org/dagu)
package/bin/dagu ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "@dagu-org/dagu-linux-ppc64",
3
+ "version": "1.17.4",
4
+ "description": "Dagu binary for Linux PowerPC 64-bit",
5
+ "repository": "github:dagu-org/dagu",
6
+ "license": "GPL-3.0",
7
+ "os": [
8
+ "linux"
9
+ ],
10
+ "cpu": [
11
+ "ppc64"
12
+ ],
13
+ "files": [
14
+ "bin/dagu"
15
+ ]
16
+ }