expat: update to 2.3.0

This commit is contained in:
Juergen Daubert 2021-03-27 10:48:14 +01:00
parent d7ec088c68
commit 6ba3345e01
3 changed files with 19 additions and 19 deletions

View File

@ -8,9 +8,9 @@ drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libexpat.a
-rwxr-xr-x root/root usr/lib/libexpat.la
lrwxrwxrwx root/root usr/lib/libexpat.so -> libexpat.so.1.6.12
lrwxrwxrwx root/root usr/lib/libexpat.so.1 -> libexpat.so.1.6.12
-rwxr-xr-x root/root usr/lib/libexpat.so.1.6.12
lrwxrwxrwx root/root usr/lib/libexpat.so -> libexpat.so.1.7.0
lrwxrwxrwx root/root usr/lib/libexpat.so.1 -> libexpat.so.1.7.0
-rwxr-xr-x root/root usr/lib/libexpat.so.1.7.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/expat.pc
drwxr-xr-x root/root usr/share/

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/core.pub
RWRJc1FUaeVeqqu0CYH3WWJCjDOgnwRsH63N/5LRYcDZOohraOoTCiBCaHYOwuPb9TvcH6m3InO9jGdTrCx+Q+Fm6Mdg4kaG6QA=
SHA256 (Pkgfile) = db207c7e2db4d338bc1ed029f630ea52fe6289b446cf1e0405c86f377ef73684
SHA256 (.footprint) = e7a5ea696c6c200a48e4bf520dfaf52801038e4c5060ddfe7ae420e50b5a4b11
SHA256 (expat-2.2.10.tar.lz) = a17adece0afd5c42a1ba9549fad00e5066838c87c4d2ac395ff447558fe045de
RWRJc1FUaeVeqnOsUkx4CducMBIkqxPNX1R397O+GZkd/kn2zNoyCEdp4OxarqQPXFOMDfeAzGgpkQDUmjOK+f8m2R1JqVxL3wg=
SHA256 (Pkgfile) = 9888fe422c23620fb0ef5d769b026b50cb161939034e388570ea306efe9b0710
SHA256 (.footprint) = 6f1cdd735806db53fc79f0f54ebe01fc5592eb28b94a07f41c9e08bdad04cd68
SHA256 (expat-2.3.0.tar.lz) = 1c2d24952fe161238d0d9ddb65b1820068152f2398c29a9f126a0ef91c864b23

View File

@ -1,20 +1,20 @@
# Description: A fast, non-validating, stream-oriented XML parsing library
# URL: https://libexpat.github.io/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# URL: https://libexpat.github.io/
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=expat
version=2.2.10
version=2.3.0
release=1
source=(http://download.sourceforge.net/$name/$name-$version.tar.lz)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
install -D -m 0644 doc/xmlwf.1 $PKG/usr/share/man/man1/xmlwf.1
build() {
cd $name-$version
rm -r $PKG/usr/share/doc
./configure --prefix=/usr
make
make DESTDIR=$PKG install
install -D -m 0644 doc/xmlwf.1 $PKG/usr/share/man/man1/xmlwf.1
rm -r $PKG/usr/{lib/cmake,share/doc}
}