37 lines
1 KiB
Text
37 lines
1 KiB
Text
# Maintainer: Evangelos Foutras <evangelos@foutrelis.com>
|
|
# Contributor: Stéphane Gaudreault <stephane@archlinux.org>
|
|
# Contributor: Allan McRae <allan@archlinux.org>
|
|
# Contributor: Andreas Radke <andyrtr@archlinux.org>
|
|
|
|
pkgname=dialog
|
|
pkgver=1.3_20240619
|
|
pkgrel=2
|
|
epoch=1
|
|
pkgdesc="A tool to display dialog boxes from shell scripts"
|
|
arch=('x86_64')
|
|
url="https://invisible-island.net/dialog/"
|
|
license=('LGPL2.1')
|
|
depends=('sh' 'ncurses')
|
|
provides=('libdialog.so')
|
|
source=(https://invisible-mirror.net/archives/$pkgname/$pkgname-${pkgver/_/-}.tgz{,.asc})
|
|
sha256sums=('5d8c4318963db3fd383525340276e0e05ee3dea9a6686c20779f5433b199547d'
|
|
'SKIP')
|
|
validpgpkeys=('19882D92DDA4C400C22C0D56CC2AF4472167BE03') # Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-${pkgver/_/-}"
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-nls \
|
|
--with-libtool \
|
|
--with-ncursesw
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-${pkgver/_/-}"
|
|
make DESTDIR="$pkgdir" install-full
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|