Date: Sunday, September 9, 2018 @ 03:03:48 Author: kkeen Revision: 378848
archrelease: copy trunk to community-x86_64 Added: fbdump/repos/community-x86_64/ fbdump/repos/community-x86_64/PKGBUILD (from rev 378847, fbdump/trunk/PKGBUILD) ----------+ PKGBUILD | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) Copied: fbdump/repos/community-x86_64/PKGBUILD (from rev 378847, fbdump/trunk/PKGBUILD) =================================================================== --- community-x86_64/PKGBUILD (rev 0) +++ community-x86_64/PKGBUILD 2018-09-09 03:03:48 UTC (rev 378848) @@ -0,0 +1,25 @@ +# $Id$ +# Maintainer: Kyle Keen <keen...@gmail.com> +# Contributor: Sergej Pupykin <pupykin.s+a...@gmail.com> + +pkgname=fbdump +pkgver=0.4.2 +pkgrel=5 +pkgdesc="captures the contents of the visible portion of the Linux framebuffer to stdout" +arch=('x86_64') +url="http://www.rcdrummond.net/fbdump/" +license=("GPL") +depends=('glibc') +source=("http://www.rcdrummond.net/$pkgname/$pkgname-$pkgver.tar.gz") +md5sums=('85ae97c0800a2caf2b04ad7764e3915b') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +}