diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/lrzsz/PKGBUILD | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/lrzsz/PKGBUILD')
-rw-r--r-- | community/lrzsz/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/community/lrzsz/PKGBUILD b/community/lrzsz/PKGBUILD new file mode 100644 index 000000000..cb1874f18 --- /dev/null +++ b/community/lrzsz/PKGBUILD @@ -0,0 +1,26 @@ +# $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=4 +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 + # Rename file so they can be used with minicom + ./configure --prefix=/usr --mandir=/usr/share/man \ + --program-transform-name=s/l// + make -j1 + make -j1 DESTDIR=$pkgdir install +} |