blob: 02a8e46a69de03ffee9e4863c48f0e84543a7eec (
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
32
|
#!/bin/mkpkg
# description: Readline wrapper for any command
# url: https://github.com/hanslub42/rlwrap
name=rlwrap
version=0.48
release=1
depends=(readline ncurses)
source=(https://github.com/hanslub42/rlwrap/releases/download/v$version/$name-$version.tar.gz)
sha256sums=(
"cdf69074a216a8284574dddd145dd046c904ad5330a616e0eed53c9043f2ecbc"
)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--mandir=/usr/share/man \
--without-libptytty
make
make DESTDIR=$PKG install
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|