summaryrefslogtreecommitdiff
path: root/community/fbdump/PKGBUILD
blob: 2bde57580e523f394eb46e1cb27182d98831a83b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# $Id: PKGBUILD 113981 2014-07-01 10:52:05Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>

pkgname=fbdump
pkgver=0.4.2
pkgrel=4
pkgdesc="captures the contents of the visible portion of the Linux framebuffer to stdout"
arch=('i686' 'x86_64')
url="http://www.rcdrummond.net/fbdump/"
license=("GPL")
depends=()
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
}