diff options
Diffstat (limited to 'community/lrzsz/PKGBUILD')
-rw-r--r-- | community/lrzsz/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/community/lrzsz/PKGBUILD b/community/lrzsz/PKGBUILD new file mode 100644 index 000000000..eb90c46d6 --- /dev/null +++ b/community/lrzsz/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 19892 2010-06-30 13:19:34Z 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 +pkgdesc="xmodem, ymodem and zmodem file transfer protocols" +url="http://www.ohse.de/uwe/software/lrzsz.html" +license=('GPL2') +arch=('i686' 'x86_64') +source=(http://www.ohse.de/uwe/releases/$pkgname-$pkgver.tar.gz + lrzsz.patch) +md5sums=('b5ce6a74abc9b9eb2af94dffdfd372a4' + '332f6e4af9fe0266efecf9d334c4d3db') + +build() { + cd $srcdir/$pkgname-$pkgver + + patch -Np1 -i ../lrzsz.patch || return 1 + + # 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 +} |