summaryrefslogtreecommitdiff
path: root/repo/core/gperf.xibuild
blob: a5d5556a671234263e6da269501759eefec31914 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

DEPS=(glibc) 

SOURCE=http://ftp.gnu.org/pub/gnu/gperf/gperf-3.1.tar.gz
DESC="Perfect hash functoin generator"

build () {
    ./configure --prefix=/usr --docdir=/usr/share/doc/gperf-3.1
    make
    make -j1 check

    make DESTDIR=$PKG_DEST install 
}