diff options
Diffstat (limited to 'repo/core/libtool.xibuild')
-rw-r--r-- | repo/core/libtool.xibuild | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/repo/core/libtool.xibuild b/repo/core/libtool.xibuild new file mode 100644 index 0000000..3e41c00 --- /dev/null +++ b/repo/core/libtool.xibuild @@ -0,0 +1,18 @@ +#!/bin/bash + +DEPS=(sh tar glibc) + +SOURCE=https://ftpmirror.gnu.org/libtool/libtool-2.4.6.tar.gz +DESC="A generic library support script" + +build () { + ./configure --prefix=/usr + make + make check + + make DESTDIR=$PKG_DEST install +} + +package () { + rm -fv $PKG_DEST/usr/lib/libltdl.a +} |