22 lines
518 B
Plaintext
22 lines
518 B
Plaintext
# Description: A menu driven communications program
|
|
# URL: http://alioth.debian.org/projects/minicom/
|
|
# Maintainer: Jose V Beneyto, sepen at crux dot nu
|
|
# Packager: sten, nick dot steeves at shaw dot ca
|
|
# Depends on:
|
|
|
|
name=minicom
|
|
version=2.7
|
|
release=2
|
|
source=(https://alioth.debian.org/frs/download.php/file/3977/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
sed 's/getline(/gethistline(/g' -i src/minicom.c
|
|
|
|
./configure --prefix=/usr \
|
|
--disable-nls \
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|