blob: d0086fcb96c9678d0bbdc3499522fd1e9bd6f878 (
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: Controls the generation of executables and other compile-related tasks
# url: https://www.gnu.org/software/make/
name=make
version=4.4.1
release=1
source=(
https://ftp.gnu.org/gnu/$name/$name-$version.tar.gz
)
sha256sums=(
"dd16fb1d67bfab79a72f5e8390735c49e3e8e70b4945a15ab1f81ddb78658fb3"
)
build() {
cd $name-$version
./configure --prefix=/usr \
--disable-nls
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/info
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|