|
root / devel / autoconf / build.sh
build.sh Bash 12 lines 136 B
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#!/bin/bash
# Build script for autoconf

set -e
cd "$SRCDIR"

./configure \
    --prefix=$PREFIX

gmake
gmake install DESTDIR="$PKGDIR"