1 # mpk-build - Build packages.
2 # Copyright (C) 2008 Cesar Strauss
4 # This file is part of Minipack - an automated build tool.
6 # Minipack is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # Minipack is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with Minipack. If not, see <http://www.gnu.org/licenses/>.
21 : ${top_srcdir:=$name-$version}
23 pkg_builddir=$builddir/$name-$version-$release/$top_srcdir
25 if [ ! -d $pkg_builddir ]; then
27 if [ $? != 0 -o ! -d $pkg_builddir ]; then
28 echo >&2 "$(basename $0) build: Could not unpack $pkg"
67 setup_configure_options
69 echo "Configuring $pkg..."
71 ./configure $pkg_configure_opt > ../logs/configure.log
76 echo "Compiling $pkg..."
78 make > ../logs/make.log
83 echo "Installing $pkg..."
85 make install > ../logs/install.log
100 echo "================"
101 echo "Build succeeded."
102 echo "================"
106 echo "Usage: $(basename $0) build package-name"
111 if [ -z "$pkg" ]; then
112 echo "Usage: $(basename $0) build package-name ..."
116 recipe=$(get_recipe_name $pkg) || exit 1