forked from ports/compat-32
20 lines
505 B
Plaintext
20 lines
505 B
Plaintext
# Description: A fast, non-validating, stream-oriented XML parsing library
|
|
# URL: http://expat.sourceforge.net/
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: expat
|
|
|
|
name=expat-32
|
|
version=2.1.0
|
|
release=1
|
|
source=(http://download.sourceforge.net/expat/expat-$version.tar.gz)
|
|
|
|
build() {
|
|
cd expat-$version
|
|
./configure --prefix=/usr \
|
|
--libdir=/usr/lib32 \
|
|
--mandir=/usr/man
|
|
make
|
|
make INSTALL_ROOT=$PKG install
|
|
rm -rf $PKG/usr/{bin,include,man}
|
|
}
|