X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage5%2Fpkg%2Fmilter-spf;h=4d3ed7d1b80b14d21274eea81003f78dce09b0fb;hb=3a7d016a0246156de63a6f98bbf5be2e95230060;hp=4ff7ac387c331c9b3dcab178e3db1f2f73b08858;hpb=3dae4c554ec18f465eb6ee5e6efdbdbe8557e13c;p=hvlinux.git diff --git a/stage5/pkg/milter-spf b/stage5/pkg/milter-spf index 4ff7ac3..4d3ed7d 100644 --- a/stage5/pkg/milter-spf +++ b/stage5/pkg/milter-spf @@ -1,25 +1,16 @@ -#!/bin/sh -set -o errexit +#!/bin/bash -# First argument of this script is the package name. +hvbuil() +{ + 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 +}