blob: 3eb1285f3af7ec695924424cb702bf5ea0e94d2a (
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: Automatically configure source code
# url: https://www.gnu.org/software/autoconf/
name=autoconf
version=2.73
release=1
depends=(mawk diffutils m4 perl)
makedesdeps=(m4 perl)
source=(https://ftp.gnu.org/gnu/autoconf/autoconf-$version.tar.xz)
sha256sums=(
"9fd672b1c8425fac2fa67fa0477b990987268b90ff36d5f016dae57be0d6b52e"
)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/info
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|