Add ppl patch to fix bug when compiling without Perl (stage2)
[hvlinux.git] / stage5 / pkg / milter-spf
index 4ff7ac3..e5de87f 100644 (file)
@@ -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
+}