diff options
Diffstat (limited to 'repo/system/gperf.xibuild')
-rw-r--r-- | repo/system/gperf.xibuild | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/repo/system/gperf.xibuild b/repo/system/gperf.xibuild new file mode 100644 index 0000000..0f08d60 --- /dev/null +++ b/repo/system/gperf.xibuild @@ -0,0 +1,14 @@ +#!/bin/bash + +DEPS=(glibc) + +SOURCE=http://ftp.gnu.org/pub/gnu/gperf/gperf-3.1.tar.gz +DESC="Perfect hash function generator" + +build () { + ./configure --prefix=/usr --docdir=/usr/share/doc/gperf-3.1 + make + make -j1 check + + make DESTDIR=$PKG_DEST install +} |