mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
18 lines
522 B
Bash
18 lines
522 B
Bash
# Maintainer: Paulo Matias <matiasΘarchlinux-br·org>
|
|
|
|
pkgname="pstreams"
|
|
pkgver="0.6.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/pstreams/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('a12c2793937c2ea1bee04827d7b2ca63')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
install -d "$pkgdir/usr/include/pstreams"
|
|
install -m644 pstream.h "$pkgdir/usr/include/pstreams"
|
|
}
|
|
|