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

set -e
cd "$SRCDIR"

./configure \
    --prefix=$PREFIX

gmake -j${JOBS:-1}
gmake install DESTDIR="$PKGDIR"