Update for new BUILD_DIR and SRC_DIR variables
[hvlinux.git] / stage5 / pkg / milter-spf
index 4ff7ac3..4d3ed7d 100644 (file)
@@ -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
+}