diff options
Diffstat (limited to 'community/lrzsz')
-rw-r--r-- | community/lrzsz/PKGBUILD | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/community/lrzsz/PKGBUILD b/community/lrzsz/PKGBUILD index 66a420ebc..48d636366 100644 --- a/community/lrzsz/PKGBUILD +++ b/community/lrzsz/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 19892 2010-06-30 13:19:34Z spupykin $ +# $Id: PKGBUILD 66212 2012-02-23 03:25:05Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Jeremie Dimino <jeremie@dimino.org> # Contributor: bender02 at gmx dot com pkgname=lrzsz pkgver=0.12.20 -pkgrel=3 +pkgrel=4 pkgdesc="xmodem, ymodem and zmodem file transfer protocols" url="http://www.ohse.de/uwe/software/lrzsz.html" license=('GPL2') @@ -17,12 +17,10 @@ md5sums=('b5ce6a74abc9b9eb2af94dffdfd372a4' build() { cd $srcdir/$pkgname-$pkgver - - patch -Np1 -i ../lrzsz.patch || return 1 - + patch -Np1 -i ../lrzsz.patch # Rename file so they can be used with minicom ./configure --prefix=/usr --mandir=/usr/share/man \ --program-transform-name=s/l// - make -j1 || return 1 - make -j1 DESTDIR=$pkgdir install || return 1 + make -j1 + make -j1 DESTDIR=$pkgdir install } |