mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-13 09:14:18 +02:00
38 lines
932 B
Text
38 lines
932 B
Text
# Contributor: Michael Mason <ms13sp@gmail.com>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=dialog
|
|
pkgver=1.3.20250116
|
|
_pkgver=${pkgver%.*}-${pkgver##*.}
|
|
pkgrel=0
|
|
pkgdesc="Script interpreter providing curses widgets"
|
|
url="https://invisible-island.net/dialog/dialog.html"
|
|
arch="all"
|
|
license="LGPL-2.1-only"
|
|
makedepends="ncurses-dev"
|
|
subpackages="$pkgname-doc $pkgname-static"
|
|
source="https://invisible-mirror.net/archives/dialog/dialog-$_pkgver.tgz"
|
|
builddir="$srcdir/$pkgname-$_pkgver"
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--with-ncursesw
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="
|
|
6c371c6f42871c07ea6d56f8d11e338ef781ea345da57da5168bf950f1114eaeb975e7f2a48ccf3e77a4cecd01a01f460ddb6ab4e7d70eb27256226ea7cebd75 dialog-1.3-20250116.tgz
|
|
"
|