# Maintainer: Balló György # Contributor: Kyle Keen # Contributor: Lex Black # Contributor: Vladimir Kirillov # ALARM: Kevin Mihelich # - patch from debian to fix error in header used by other programs pkgname=libpgm pkgver=5.3.128 pkgrel=3 pkgdesc='Library implementing the Pragmatic General Multicast (PGM, RFC3208) reliable transport protocol (OpenPGM)' arch=('x86_64') url='https://github.com/steve-o/openpgm' license=('LGPL') depends=('glibc') makedepends=('python') source=("https://github.com/steve-o/openpgm/archive/release-${pkgver//./-}/openpgm-$pkgver.tar.gz" 'inline-pgm_family_string.patch') sha256sums=('8d707ef8dda45f4a7bc91016d7f2fed6a418637185d76c7ab30b306499c6d393' '0373d16324605639442d24020e09dcda3e3ab5b86fda7b01c865b49163650706') prepare() { cd openpgm-release-${pkgver//./-}/openpgm/pgm # https://github.com/steve-o/openpgm/pull/66 mv openpgm-5.2.pc.in openpgm-5.3.pc.in patch -p3 -i $srcdir/inline-pgm_family_string.patch ./bootstrap.sh } build() { cd openpgm-release-${pkgver//./-}/openpgm/pgm ./configure --prefix=/usr make } package() { cd openpgm-release-${pkgver//./-}/openpgm/pgm make DESTDIR="$pkgdir" install }