Add experimental cairo printing patch (monolith)
[minipack.git] / tools / mpk-clean
blob4d764aab0a6294577cd1f1654e1bc0f21f63306f
1 # mpk-clean - Clean build directory.
2 # Copyright (C) 2009 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/>.
19 clean()
21   buildroot=$builddir/$name-$version-$release
22   rm -rf "$buildroot"  
25 if [ -z "$1" ]; then
26   echo "Usage: $(basename $0) clean package-name"
27   exit 1
29 pkg=$1
31 if [ -z "$pkg" ]; then
32   echo "Usage: $(basename $0) clean package-name ..."
33   exit 1
36 recipe=$(get_recipe_name $pkg) || exit 1
38 . $recipe
40 clean