blob: 1b9ea9a24eb4cafee728f571d1ce549a709e07ef (
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.2
9 release=1
10 source=(http://alioth.debian.org/download.php/1806/$name-$version.tar.gz)
11
12 build() {
13 cd $name-$version
14 ./configure --prefix=/usr --disable-nls
15 make
16 make DESTDIR=$PKG install
17 }
|