summaryrefslogtreecommitdiff
path: root/repo/system/libffi.xibuild
blob: 872cb83a7986c86d667d60cb4a18da9b88ba5fca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

DEPS=(glibc)

SOURCE=https://github.com/libffi/libffi/releases/download/v3.4.2/libffi-3.4.2.tar.gz
DESC="Portable foreign function interface library"

build () {
    ./configure --prefix=/usr --disable-static --with-gcc-arch=native --disable-exec-static-tramp
    make
    make DESTDIR=$PKG_DEST install 
}