diff options
author | root <root@rshg054.dnsready.net> | 2011-11-29 23:14:46 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-11-29 23:14:46 +0000 |
commit | 946f0c9fe48dfb648a8a0be065e92f237ce210fd (patch) | |
tree | 13387ae15c5ab9a50acdaa6ab02a076319c19047 /community/picocom | |
parent | 83c3c42a38bda36bdc56d594318958bc4cfd9b32 (diff) |
Tue Nov 29 23:14:46 UTC 2011
Diffstat (limited to 'community/picocom')
-rw-r--r-- | community/picocom/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/community/picocom/PKGBUILD b/community/picocom/PKGBUILD new file mode 100644 index 000000000..7b98ad531 --- /dev/null +++ b/community/picocom/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 59616 2007-01-01 00:26:04Z seblu $ +# Maintainer: Sebastien Luttringer <seblu+arch@seblu.net> +# Contributor: Jens Adam (byte/jra) <j_adam@web.de> + +pkgname=picocom +pkgver=1.6 +pkgrel=2 +pkgdesc='Minimal dumb-terminal emulation program, very much like minicom' +url='http://code.google.com/p/picocom/' +license=('GPL2') +arch=('i686' 'x86_64') +source=("http://${pkgname}.googlecode.com/files/${pkgname}-${pkgver}.tar.gz") +sha1sums=('f042e15fa76ab3349c74a70062aa210b527e6bdc') + +build() { + cd ${pkgname}-${pkgver} + make -e +} + +package() { + cd ${pkgname}-${pkgver} + install -D -m 755 picocom "${pkgdir}"/usr/bin/picocom + install -D -m 644 picocom.8 "${pkgdir}"/usr/share/man/man8/picocom.8 +} + +# vim:set ts=2 sw=2 ft=sh et: |