From c9ab8a7f6c4d70672e2681f0e57d3298a2bdab7b Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Sun, 22 Sep 2013 11:25:29 +0100 Subject: makepkg: run locally with libtool style wrapper Build makepkg to scripts/.lib/makepkg and add a wrapper script to call it. This is not useful at the moment, but is the first step to allowing makepkg to be split into smaller pieces. Signed-off-by: Allan McRae [Ashley: rebased] Signed-off-by: Ashley Whetter --- scripts/makepkg-wrapper.sh.in | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 scripts/makepkg-wrapper.sh.in (limited to 'scripts/makepkg-wrapper.sh.in') diff --git a/scripts/makepkg-wrapper.sh.in b/scripts/makepkg-wrapper.sh.in new file mode 100644 index 00000000..d703ee4c --- /dev/null +++ b/scripts/makepkg-wrapper.sh.in @@ -0,0 +1,23 @@ +#!/bin/bash +# +# makepkg - a wrapper for running the real makepkg in the source tree +# +# Copyright (c) 2013 Pacman Development Team +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# + +DIR="@PWD@" + +LIBRARY="$DIR"/libmakepkg exec "$DIR"/.lib/makepkg "$@" -- cgit v1.2.3-54-g00ecf