summaryrefslogtreecommitdiff
path: root/opt/dialog/MAKEPKG
blob: 6a6c65913d8fc371d48bd5e878b2be6983b98507 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/mkpkg
# description: A tool to display dialog boxes from shell scripts
# url: https://invisible-island.net/dialog/

name=dialog
version=1.3-20251001
release=1
depends=(ncurses)
source=(https://invisible-mirror.net/archives/$name/$name-$version.tgz)

sha256sums=(
    "bee47347a983312facc4dbcccd7fcc86608d684e1f119d9049c4692213db96c3"
)

build() {
    cd $name-$version
    
    ./configure \
        --prefix=/usr \
        --with-ncursesw
    
    make
    make DESTDIR=$PKG install
}

signify() {
    untrusted comment: public key
    RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}

# vim: filetype=sh