diff options
author | P. J. McDermott <pj@pehjota.net> | 2014-06-11 23:47:32 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2014-06-11 23:47:32 (EDT) |
commit | 7083b7a35eb6eb1b0086ca198e2ae9c8b70a906e (patch) | |
tree | 6433906f0c1b89dd1ab6145fc6ae4caf918f6882 | |
parent | 0d1318b791628084d70ef8c754c79ece5302fc22 (diff) |
Add binary packages.
-rw-r--r-- | libpth-dev.pkg/control | 6 | ||||
-rw-r--r-- | libpth-dev.pkg/files | 5 | ||||
-rw-r--r-- | libpth-doc.pkg/control | 6 | ||||
-rw-r--r-- | libpth-doc.pkg/files | 1 | ||||
-rw-r--r-- | libpth.20.pkg/control | 4 | ||||
-rw-r--r-- | libpth.20.pkg/docs | 0 | ||||
-rw-r--r-- | libpth.20.pkg/files | 1 | ||||
-rw-r--r-- | substvars | 7 |
8 files changed, 30 insertions, 0 deletions
diff --git a/libpth-dev.pkg/control b/libpth-dev.pkg/control new file mode 100644 index 0000000..f2ebbc9 --- /dev/null +++ b/libpth-dev.pkg/control @@ -0,0 +1,6 @@ +Architecture: any +Platform: all +Description: GNU Portable Threads - development files + ${Common-Description} + . + This package provides development files for the GNU Portable Threads library. diff --git a/libpth-dev.pkg/files b/libpth-dev.pkg/files new file mode 100644 index 0000000..8468981 --- /dev/null +++ b/libpth-dev.pkg/files @@ -0,0 +1,5 @@ +/usr/bin/ +/usr/include/ +/usr/lib/*/libpth.so +/usr/lib/*/libpth.a +/usr/share/aclocal/ diff --git a/libpth-doc.pkg/control b/libpth-doc.pkg/control new file mode 100644 index 0000000..0a93e38 --- /dev/null +++ b/libpth-doc.pkg/control @@ -0,0 +1,6 @@ +Architecture: all +Platform: all +Description: GNU Portable Threads - documentation + ${Common-Description} + . + This package provides documentation for the GNU Portable Threads library. diff --git a/libpth-doc.pkg/files b/libpth-doc.pkg/files new file mode 100644 index 0000000..72ec615 --- /dev/null +++ b/libpth-doc.pkg/files @@ -0,0 +1 @@ +/usr/share/man/ diff --git a/libpth.20.pkg/control b/libpth.20.pkg/control new file mode 100644 index 0000000..8753956 --- /dev/null +++ b/libpth.20.pkg/control @@ -0,0 +1,4 @@ +Architecture: any +Platform: all +Description: GNU Portable Threads + ${Common-Description} diff --git a/libpth.20.pkg/docs b/libpth.20.pkg/docs new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/libpth.20.pkg/docs diff --git a/libpth.20.pkg/files b/libpth.20.pkg/files new file mode 100644 index 0000000..46bd471 --- /dev/null +++ b/libpth.20.pkg/files @@ -0,0 +1 @@ +/usr/lib/*/libpth.so.* diff --git a/substvars b/substvars new file mode 100644 index 0000000..e35048d --- /dev/null +++ b/substvars @@ -0,0 +1,7 @@ +Common-Description: + Pth is a very portable POSIX/ANSI-C based library for Unix platforms which + provides non-preemptive priority-based scheduling for multiple threads of + execution (aka "multithreading") inside event-driven applications. All threads + run in the same address space of the server application, but each thread has + it's own individual program-counter, run-time stack, signal mask and errno + variable. |