#!/bin/bash # Copyright 2011 Joshua Ismael Haase Hernandez # ---------- GNU General Public License 3 ---------- # This file is part of Parabola. # Parabola 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 3 of the License, or # (at your option) any later version. # Parabola 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 Parabola. If not, see . source /etc/libretools.conf custom_config=$XDG_CONFIG_HOME/libretools/libretools.conf if [ -x $custom_config ]; then source $custom_config; unset $custom_config fi [[ ! -r rePKGBUILD ]] && { error "This build does not contains a rePKGBUILD." exit 1 } source /etc/makepkg.conf source /etc/abs.conf source rePKGBUILD usage() { echo "cd to a dir with a rePKGBUILD and other file info and run" echo $0 } stdnull "tempdir=$(mktemp -d /tmp/$(basename $PWD).XXXXX)" msg "Repackaging: $pkgname $pkgver-$pkgrel ($(date -u))" cp ./* ${tempdir}/ stdnull "pushd ${tempdir}" mv rePKGBUILD PKGBUILD msg2 "Updating md5sums" makepkg -g >> PKGBUILD msg "Repackaging using libremakepkg" sudo libremakepkg