diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2012-02-22 17:06:20 +0100 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2012-02-22 17:06:20 +0100 |
commit | 47d70348352503e92ba694a6a683f629eaa18215 (patch) | |
tree | 7fb6f5ec75596b795dee52cfa35e3ef00a047cfb /community/fbdump | |
parent | c0bcbcf4015ba2388cb0f0bd418e5242f9613b43 (diff) | |
parent | 1f55cedf5ea357497d2a98eb2be78d8dab4a9665 (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
community-testing/hostapd/PKGBUILD
community/discid/PKGBUILD
community/dumb/PKGBUILD
community/dynamite/PKGBUILD
community/echat/PKGBUILD
community/fbdump/PKGBUILD
community/fldiff/PKGBUILD
community/flightgear/PKGBUILD
community/fonteditfs/PKGBUILD
community/freehdl/PKGBUILD
community/unclutter/PKGBUILD
community/unpaper/PKGBUILD
community/wmii/PKGBUILD
community/xkeycaps/PKGBUILD
community/xl2tpd/PKGBUILD
community/xmmsctrl/PKGBUILD
extra/gnutls/PKGBUILD
extra/inkscape/PKGBUILD
extra/ntp/PKGBUILD
extra/transmission/PKGBUILD
multilib/lib32-libpng/PKGBUILD
testing/libreoffice/PKGBUILD
Diffstat (limited to 'community/fbdump')
-rw-r--r-- | community/fbdump/PKGBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/community/fbdump/PKGBUILD b/community/fbdump/PKGBUILD index cef123993..ed68de1cf 100644 --- a/community/fbdump/PKGBUILD +++ b/community/fbdump/PKGBUILD @@ -1,20 +1,20 @@ -# $Id: PKGBUILD 17537 2010-05-24 14:23:29Z spupykin $ +# $Id: PKGBUILD 65232 2012-02-20 12:22:39Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> pkgname=fbdump pkgver=0.4.2 -pkgrel=2.1 +pkgrel=3 pkgdesc="captures the contents of the visible portion of the Linux framebuffer to stdout" arch=('i686' 'x86_64' 'mips64el') url="http://www.rcdrummond.net/fbdump/" license=("GPL") -depends=(glibc) +depends=() source=(http://www.rcdrummond.net/$pkgname/$pkgname-$pkgver.tar.gz) md5sums=('85ae97c0800a2caf2b04ad7764e3915b') build() { - cd $startdir/src/$pkgname-$pkgver + cd $srcdir/$pkgname-$pkgver ./configure --prefix=/usr - make || return 1 - make DESTDIR=$startdir/pkg install + make + make DESTDIR=$pkgdir install } |