blob: 30dba5614a421bb8ca6734563af0e70512e50993 (
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: A standard Unix macro processor with extensions
# url: https://rene.seindal.dk/
name=m4
version=1.4.21
release=1
source=(
https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz
)
sha256sums=(
"f25c6ab51548a73a75558742fb031e0625d6485fe5f9155949d6486a2408ab66"
)
build() {
cd $name-$version
./configure --prefix=/usr --disable-nls
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/info
rm -f $PKG/usr/lib/*.la
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|