From 48ca75555522716f0f686dcae3dd6cf3d8ad714d Mon Sep 17 00:00:00 2001 From: davidovski Date: Tue, 31 May 2022 11:05:19 +0100 Subject: removed idea of repos --- repo/expat/expat.xibuild | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 repo/expat/expat.xibuild (limited to 'repo/expat/expat.xibuild') diff --git a/repo/expat/expat.xibuild b/repo/expat/expat.xibuild new file mode 100644 index 0000000..d921e1b --- /dev/null +++ b/repo/expat/expat.xibuild @@ -0,0 +1,22 @@ +#!/bin/sh + +MAKEDEPS="make " +DEPS="musl" + +PKG_VER=2.4.2 +SOURCE=https://github.com/libexpat/libexpat/releases/download/R_$(echo $PKG_VER | sed "s|\.|_|g")/expat-$PKG_VER.tar.xz +DESC="An XML parser library" + +build () { + ./configure --prefix=/usr --disable-static --docdir=/usr/share/doc/expat-$PKG_VER + make +} + +check () { + make check +} + +package () { + make DESTDIR=$PKG_DEST install + install -m644 doc/* $PKG_DEST/usr/share/doc/expat-$PKG_VER +} -- cgit v1.2.1