blob: 7881d82f09acc220157db99557daecff9a826ad5 (
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
33
34
|
#!/bin/mkpkg
# description: Fast POSIX awk implementation
# url: https://invisible-island.net/mawk/
name=mawk
version=1.3.4-20260302
release=1
source=(https://invisible-mirror.net/archives/$name/$name-$version.tgz)
sha256sums=(
"SKIP"
)
build() {
cd $name-$version
./configure \
--prefix=/ \
--bindir=/bin \
--mandir=/usr/share/man
make
make install DESTDIR=$PKG
# Create awk symlink
ln -s mawk $PKG/bin/awk
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|