090b256d2c
includes security fixes, see - https://github.com/libexpat/libexpat/blob/R_2_2_1/expat/Changes - https://libexpat.github.io/doc/cve-2017-9233/
24 lines
514 B
Plaintext
24 lines
514 B
Plaintext
# Description: A fast, non-validating, stream-oriented XML parsing library
|
|
# URL: https://libexpat.github.io/
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: expat
|
|
|
|
name=expat-32
|
|
version=2.2.1
|
|
release=1
|
|
source=(http://download.sourceforge.net/expat/expat-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd expat-$version
|
|
|
|
CONFIG_SHELL=/bin/bash \
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib32
|
|
|
|
make
|
|
make INSTALL_ROOT=$PKG install
|
|
|
|
rm -r $PKG/usr/{bin,include,share/man,share}
|
|
}
|