tinyxml2: initial commit, version 9.0.0

This commit is contained in:
Tim Biermann 2024-04-07 21:17:56 +02:00
parent 4683ad8125
commit 792fcb99e3
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 43 additions and 0 deletions

15
tinyxml2/.footprint Normal file
View File

@ -0,0 +1,15 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/tinyxml2.h
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/cmake/
drwxr-xr-x root/root usr/lib/cmake/tinyxml2/
-rw-r--r-- root/root usr/lib/cmake/tinyxml2/tinyxml2-config-version.cmake
-rw-r--r-- root/root usr/lib/cmake/tinyxml2/tinyxml2-config.cmake
-rw-r--r-- root/root usr/lib/cmake/tinyxml2/tinyxml2-shared-targets-release.cmake
-rw-r--r-- root/root usr/lib/cmake/tinyxml2/tinyxml2-shared-targets.cmake
lrwxrwxrwx root/root usr/lib/libtinyxml2.so -> libtinyxml2.so.9
lrwxrwxrwx root/root usr/lib/libtinyxml2.so.9 -> libtinyxml2.so.9.0.0
-rwxr-xr-x root/root usr/lib/libtinyxml2.so.9.0.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/tinyxml2.pc

5
tinyxml2/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3w4gyIyx00TCYL8pGJjQtHJp5e4KBpgqHltodfQMD2vJNmloX3fEbEG/mDZWm0+WdUaopZy0XDETvi7HHwiI6AU=
SHA256 (Pkgfile) = 67b3a251436f0273cf9c94201903c8c6ac585385db2b2f3d9fcc8e5f6e2de24b
SHA256 (.footprint) = bacf0a52b4323d02ecbda4f0210339d0dd2593f35e8bb2cc2b9d08f1b6397491
SHA256 (tinyxml2-9.0.0.tar.gz) = cc2f1417c308b1f6acc54f88eb70771a0bf65f76282ce5c40e54cfe52952702c

23
tinyxml2/Pkgfile Normal file
View File

@ -0,0 +1,23 @@
# Description: a simple, small, efficient, C++ XML parser
# URL: https://github.com/leethomason/tinyxml2
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on:
name=tinyxml2
version=9.0.0
release=1
source=(https://github.com/leethomason/$name/archive/$version/$name-$version.tar.gz)
build() {
cmake -S $name-$version -B build -G Ninja \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
-D BUILD_SHARED_LIBS=ON \
-D BUILD_TESTING=OFF \
-Wno-dev
cmake --build build
DESTDIR=$PKG cmake --install build
}