diff options
Diffstat (limited to 'kernel-ratten')
-rwxr-xr-x | kernel-ratten/kernel-ratten.SlackBuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/kernel-ratten/kernel-ratten.SlackBuild b/kernel-ratten/kernel-ratten.SlackBuild index f77ff452..4ad33aa5 100755 --- a/kernel-ratten/kernel-ratten.SlackBuild +++ b/kernel-ratten/kernel-ratten.SlackBuild @@ -15,6 +15,7 @@ PATCH_VERSION="3.1.6-2.6.12" TMP=${TMP:=/tmp} SRC_DIR=${SRC:=$CWD} SPLASH="/etc/bootsplash/themes/Slack-Black-Tux/config/bootsplash-1024x768.cfg" +REPOS=${REPOS:=$TMP} cat << EOCAT Just remembering, you need the following stuff installed: @@ -140,7 +141,7 @@ mkinitrd -c -k 2.6.15.7 -o $PKG/boot/initrd.gz splash -s -f $SPLASH > $PKG/boot/initrd.gz cd $PKG -makepkg -c y -l y $TMP/$PACKAGE-$VERSION-$ARCH-$BUILD.tgz +makepkg -c y -l y $REPOS/$PACKAGE-$VERSION-$ARCH-$BUILD.tgz cat << EOCAT Please check if you need to build or install the following modules: @@ -151,3 +152,7 @@ Please check if you need to build or install the following modules: Have a nice day. EOCAT +if [ "$CLEANUP" == "yes" ]; then + rm -rf $TMP +fi + |