core/dialog/PKGBUILD

29 lines
613 B
Bash
Raw Normal View History

2010-03-13 23:25:19 +08:00
pkgname=dialog
2017-01-03 09:27:44 +08:00
pkgver=1.3_20160828
pkgrel=1
2010-03-13 23:25:19 +08:00
pkgdesc="A tool to display dialog boxes from shell scripts"
arch=('x86_64')
2010-03-13 23:25:19 +08:00
url="http://invisible-island.net/dialog/"
license=('LGPL2.1')
2017-01-03 09:27:44 +08:00
depends=('sh' 'ncurses')
source=(ftp://invisible-island.net/$pkgname/$pkgname-${pkgver/_/-}.tgz)
sha256sums=('453095abaec288bfbc1ca9faced917e17742cff1ea45ec46210071ac153562f9')
2010-03-13 23:25:19 +08:00
build() {
2017-01-03 09:27:44 +08:00
cd "${srcdir}/$pkgname-${pkgver/_/-}"
./configure \
--prefix=/usr \
--enable-nls \
--with-libtool \
--with-ncursesw
make
2010-05-16 23:08:55 +08:00
}
package() {
2017-01-03 09:27:44 +08:00
cd "${srcdir}/$pkgname-${pkgver/_/-}"
make DESTDIR="${pkgdir}" install-full
2010-03-13 23:25:19 +08:00
}