46 lines
1.3 KiB
Bash
46 lines
1.3 KiB
Bash
#!/usr/bin/bash
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
|
|
# Website : https://pozol.eu
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
pkgname=dialog
|
|
pkgver=1.3_20231002
|
|
pkgrel=01
|
|
epoch=1
|
|
pkgdesc="A tool to display dialog boxes from shell scripts"
|
|
url="https://invisible-island.net/dialog/"
|
|
depends=('sh' 'ncurses')
|
|
provides=('libdialog.so')
|
|
source=(https://invisible-mirror.net/archives/$pkgname/$pkgname-${pkgver/_/-}.tgz{,.asc})
|
|
|
|
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
|
|
}
|
|
|
|
#---- arch license gpg-key & sha256sums ----
|
|
|
|
arch=(x86_64)
|
|
|
|
license=('LGPL2.1')
|
|
|
|
validpgpkeys=('19882D92DDA4C400C22C0D56CC2AF4472167BE03') # Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>
|
|
|
|
sha256sums=(315640ab0719225d5cbcab130585c05f0791fcf073072a5fe9479969aa2b833b # dialog-1.3-20231002.tgz
|
|
6acbb7c42d2c937b3305be0946d224a150f5c3ee9a4b8dbda48237dce6cc1d5b) # dialog-1.3-20231002.tgz.asc
|
|
|
|
## 8a986d625a96a4e873d753f36b4082261771324e75e4357a6e14a2df7af940a9 dialog-1_1.3_20231002-01-x86_64.pkg.tar.lz
|
|
|