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

DEPS=(glibc) 

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

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

    make DESTDIR=$PKG_DEST install 
}