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/libffi/libffi.xibuild | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 repo/libffi/libffi.xibuild (limited to 'repo/libffi/libffi.xibuild') diff --git a/repo/libffi/libffi.xibuild b/repo/libffi/libffi.xibuild new file mode 100644 index 0000000..d802142 --- /dev/null +++ b/repo/libffi/libffi.xibuild @@ -0,0 +1,17 @@ +#!/bin/sh + +MAKEDEPS="make " +DEPS="musl" + +PKG_VER=3.4.2 +SOURCE=https://github.com/libffi/libffi/releases/download/v$PKG_VER/libffi-$PKG_VER.tar.gz +DESC="Portable foreign function interface library" + +build () { + ./configure --prefix=/usr --disable-static --with-gcc-arch=native --disable-exec-static-tramp + make +} + +package () { + make DESTDIR=$PKG_DEST install +} -- cgit v1.2.1