mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
21 lines
568 B
Bash
21 lines
568 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||
|
|
||
|
pkgname=fbdump
|
||
|
pkgver=0.4.2
|
||
|
pkgrel=1
|
||
|
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 $startdir/src/$pkgname-$pkgver
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|