eth0s/ports/core/m4/Pkgfile

22 lines
510 B
Text
Raw Normal View History

# Description: The GNU macro processor
# URL:
2019-11-10 23:58:56 +08:00
# Maintainer: Emmett1, emmett1 dot 2miligrams at gmail dot com
# Depends on:
name=m4
version=1.4.18
release=1
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
build() {
cd $name-$version
# fixes required by glibc-2.28
sed -i 's/IO_ftrylockfile/IO_EOF_SEEN/' lib/*.c
echo "#define _IO_IN_BACKUP 0x100" >> lib/stdio-impl.h
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}