blob: 62b446587784c68bd99baac16f5cbc53d332f57b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Maintainer: Paulo Matias <matiasΘarchlinux-br·org>
pkgname=pstreams
pkgver=0.7.0
pkgrel=1
pkgdesc='C++ utility for simple IOStream-based Inter-Process Communication.'
arch=('i686' 'x86_64')
url='http://pstreams.sourceforge.net'
license=('LGPL')
source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz")
md5sums=('6154b8df98487bd28eb50ad85d5cdba0')
package() {
cd ${pkgname}-${pkgver}
install -D -m644 pstream.h \
${pkgdir}/usr/include/pstreams/pstream.h
}
|