summaryrefslogtreecommitdiff
path: root/repo/openpgm/openpgm.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-06-06 21:25:48 +0000
committerdavidovski <david@davidovski.xyz>2022-06-06 21:25:48 +0000
commitccc722b7ed330198d82a3cf28ead76d6d107a70a (patch)
tree7611b3cc4f3ca681524fa28b174a0253eb802e0e /repo/openpgm/openpgm.xibuild
parent9ee32689f0b57b9e1de6d22c84ce8e3700b6122b (diff)
added java
Diffstat (limited to 'repo/openpgm/openpgm.xibuild')
-rw-r--r--repo/openpgm/openpgm.xibuild37
1 files changed, 37 insertions, 0 deletions
diff --git a/repo/openpgm/openpgm.xibuild b/repo/openpgm/openpgm.xibuild
new file mode 100644
index 0000000..e38ac42
--- /dev/null
+++ b/repo/openpgm/openpgm.xibuild
@@ -0,0 +1,37 @@
+#!/bin/sh
+
+NAME="openpgm"
+DESC="An implementation of the PGM reliable multicast protocol"
+
+MAKEDEPS="python perl"
+
+PKG_VER=5.2.122
+SOURCE="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/openpgm/libpgm-$PKG_VER.tar.bz2"
+
+ADDITIONAL="
+libpgm-fix-pkgconfig.patch
+openpgm-fix-includes.patch
+python3.patch
+"
+
+prepare() {
+ cd openpgm/pgm
+ for p in $BUILD_ROOT/*.patch; do
+ patch -Np1 -i $p
+ done
+}
+
+build() {
+ CFLAGS="$CFLAGS -D_GNU_SOURCE" \
+ ./configure \
+ --prefix=/usr \
+ --enable-shared \
+ --disable-static \
+ PYTHON=python3
+ make
+}
+
+package() {
+ make install DESTDIR="$PKG_DEST"
+}
+