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

DEPS=(glibc bash)

SOURCE=http://ftp.gnu.org/gnu/which/which-2.21.tar.gz
DESC="A utility to show the full path of commands"

build () {
    CC=gcc ./configure --prefix=/usr 
    make
    make DESTDIR=$PKG_DEST install
}