X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage5%2Fpkg%2Fsplix;h=52f68b097e5b666f1528c846612f05b69e0545c0;hb=f3c8db3027d5dc530e1f30c88e0235975211582e;hp=b1d18df58ddf6aecddca9dd226e11647ff8e52e8;hpb=0fb786eca497edb316e1dfaa4a4ccec2d6b3f694;p=hvlinux.git diff --git a/stage5/pkg/splix b/stage5/pkg/splix index b1d18df..52f68b0 100644 --- a/stage5/pkg/splix +++ b/stage5/pkg/splix @@ -1,31 +1,10 @@ -#!/bin/sh -set -o errexit +#!/bin/bash # Drivers Samsung pour CUPS -# First argument of this script is the package name. -# Remaining arguments are additional configure options. - -# Reading system configuration informations, functions and package versions. -source ../sysinfos -source ../functions -source ../packages-list - -PACKAGE=${1} -shift -CONFIGURE_OPTS=${*} - -# Reading system configuration informations, functions and package versions. -source ../sysinfos -source ../functions -source ../packages-list - -# Applying patches (if any) -apply_patches ${PACKAGE} - -cd ${LFS_TMP}/${PACKAGE} -make DISABLE_JBIG=1 -make install -ldconfig - -exit $? +hvbuild() +{ + cd ${LFS_TMP}/${PACKAGE} + make DISABLE_JBIG=1 + make install +}