mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
676 B
Bash
23 lines
676 B
Bash
# $Id: PKGBUILD 10010 2008-08-23 07:17:15Z allan $
|
|
# Maintainer: Alexander Baldeck <alexander@archlinux.org>
|
|
# Contributor: dorphell <dorphell@archlinux.org>
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
|
|
pkgname=minicom
|
|
pkgver=2.3
|
|
pkgrel=2
|
|
pkgdesc="A serial communication program"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL')
|
|
depends=('bash' 'ncurses')
|
|
source=(http://alioth.debian.org/frs/download.php/2332/$pkgname-$pkgver.tar.gz)
|
|
url="http://alioth.debian.org/projects/minicom/"
|
|
md5sums=('0ebe7a91898384ca906787cc4e2c3f25')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr --sysconfdir=/etc
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install
|
|
}
|