blob: 77422ea956190a04d2a9268e3e8e7534d928cc87 (
plain)
1 # Description: A menu driven communications program
2 # URL: http://alioth.debian.org/projects/minicom/
3 # Maintainer: Simone Rota, sip at crux dot nu
4 # Packager: sten, nick dot steeves at shaw dot ca
5 # Depends on:
6
7 name=minicom
8 version=2.3
9 release=1
10 source=(http://alioth.debian.org/frs/download.php/2332/$name-$version.tar.gz)
11
12 build() {
13 cd $name-$version
14 ./configure --prefix=/usr --disable-nls --mandir=/usr/man
15 make
16 make DESTDIR=$PKG install
17 }
|