diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/fbdump |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/fbdump')
-rw-r--r-- | community/fbdump/PKGBUILD | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/community/fbdump/PKGBUILD b/community/fbdump/PKGBUILD new file mode 100644 index 000000000..1d26f0436 --- /dev/null +++ b/community/fbdump/PKGBUILD @@ -0,0 +1,20 @@ +# $Id: PKGBUILD 17537 2010-05-24 14:23:29Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> + +pkgname=fbdump +pkgver=0.4.2 +pkgrel=2 +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=(glibc) +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 +} |