summaryrefslogtreecommitdiff
path: root/community/picocom/PKGBUILD
blob: 7b98ad531c93b4bd37939bf62185dcce9c7540ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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: