mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-31 06:12:14 +01:00
34 lines
874 B
Plaintext
34 lines
874 B
Plaintext
# Contributor: Francesco Colista <francesco.colista@gmail.com>
|
|
# Maintainer: Francesco Colista <francesco.colista@gmail.com>
|
|
pkgname=expect
|
|
pkgver=5.45
|
|
pkgrel=0
|
|
pkgdesc="A tool for automating interactive applications"
|
|
url="http://www.nist.gov/el/msid/expect.cfm"
|
|
arch="all"
|
|
license="custom"
|
|
depends=""
|
|
depends_dev="tcl-dev"
|
|
makedepends="$depends_dev"
|
|
subpackages="$pkgname-dev"
|
|
source="http://downloads.sourceforge.net/project/expect/Expect/$pkgver/$pkgname$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/$pkgname$pkgver
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure --prefix=/usr
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--mandir=/usr/share/man \
|
|
--with-tcl=/usr/lib \
|
|
--with-tclinclude=/usr/include \
|
|
--disable-rpath
|
|
make || return 1
|
|
}
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
|
|
md5sums="44e1a4f4c877e9ddc5a542dfa7ecc92b expect5.45.tar.gz"
|