X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage5%2Fpkg%2Fmilter-spf;h=e5de87fe9eb52847c0c230dfe0674d738acdd8d4;hb=478880edb986df50ea7d7bdced85d3af26ba0412;hp=4ff7ac387c331c9b3dcab178e3db1f2f73b08858;hpb=3dae4c554ec18f465eb6ee5e6efdbdbe8557e13c;p=hvlinux.git diff --git a/stage5/pkg/milter-spf b/stage5/pkg/milter-spf index 4ff7ac3..e5de87f 100644 --- a/stage5/pkg/milter-spf +++ b/stage5/pkg/milter-spf @@ -1,25 +1,17 @@ -#!/bin/sh -set -o errexit +#!/bin/bash -# First argument of this script is the package name. +hvbuil() +{ + cd ${LFS_TMP}/${PACKAGE} + make + make PREFIX=/usr install +} -# Reading system configuration informations, functions and package versions. -source ../sysinfos -source ../functions -source ../packages-list +hvbuil_post() +{ + # Bootscript + install -v -m740 ${SCRDIR}/bootscripts/milter-spf /etc/rc.d/init.d -# Applying patches (if any) -apply_patches ${1} - -cd ${LFS_TMP}/${1} -make -make PREFIX=/usr install - -# Bootscript -install -v -m740 ${SCRDIR}/bootscripts/milter-spf /etc/rc.d/init.d - -# script-name start stop -bootscript_add_rc3 milter-spf 56 34 - -exit $? - + # script-name start stop + bootscript_add_rc3 milter-spf 56 34 +}