Package Details: vncrec-twibright 0.2-1

Package Base: vncrec-twibright
Description: saves/replays datastream from an rfb(VNC) server to a file or stdout
Upstream URL: http://ronja.twibright.com/utils/vncrec/
Category: x11
Licenses: GPL
Submitter: wesbrown18
Maintainer: wesbrown18
Last Packager: None
Votes: 0
First Submitted: 2011-11-23 03:37
Last Updated: 2011-11-23 03:37

Dependencies (1)

Required by (0)

Sources

Latest Comments

Comment by drencrom

2014-05-21 14:01

It works for me with rouxorp's patch. I flagged this as out of date because it does not work with the current PKGBUILD.
If the mantainer reads this she should apply that patch

Comment by Zeniff

2014-05-07 01:09

I had to remove the comma from "arch=('i686', 'x86_64')" to get it to build for i686.

Comment by rouxorp

2014-02-21 13:15

Small change to get a working packet

# Contributor: Josh Harding <theamigo@gmail.com>
# Contributor: Wes Brown <wesbrown18@gmail.com>
pkgname=vncrec-twibright
pkgver=0.2
pkgrel=1
pkgdesc="saves/replays datastream from an rfb(VNC) server to a file or stdout"
arch=('i686', 'x86_64')
url="http://ronja.twibright.com/utils/vncrec/"
license=('GPL')
depends=(libxaw)
makedepends=(imake)
provides=(vncrec)
source=('patchfile.patch' "http://ronja.twibright.com/utils/vncrec-twibright.tgz")
md5sums=('15992538036fe2446b4c75db2fb68a73' 'cd9f277c70157816e807a4754470139f')

build() {
cd "$startdir/src/vncrec-twibright"
patch -Np0 -i ../../patchfile.patch || return 1
xmkmf || return 1
make World || return 1
}

package() {
cd "$startdir/src/vncrec-twibright"
mkdir -p "$pkgdir/usr/bin/" "$pkgdir/usr/share/doc/$pkgname/"
install -m755 -t "$pkgdir/usr/bin/" vncrec/vncrec || return 1
install -m644 -t "$pkgdir/usr/share/doc/$pkgname/" README || return 1
}