diff options
Diffstat (limited to 'archivers/epkg/pkg-install')
-rw-r--r-- | archivers/epkg/pkg-install | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/archivers/epkg/pkg-install b/archivers/epkg/pkg-install deleted file mode 100644 index a741f2a6fef5..000000000000 --- a/archivers/epkg/pkg-install +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh - -PKG_PREFIX=${PKG_PREFIX:-/usr/local} - -if [ $# -ne 2 ]; then - echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2 - exit 1 -fi - -case $2 in - POST-INSTALL) - - if [ ! -d "${PKG_PREFIX}/etc" ]; then - echo "creating directory: ${PKG_PREFIX}/etc"; - mkdir -p "${PKG_PREFIX}/etc"; - fi - - if [ ! -f "${PKG_PREFIX}/etc/mkencap_environment" ]; then - echo "installing: ${PKG_PREFIX}/etc/mkencap_environment"; - cp "${PKG_PREFIX}/etc/mkencap_environment.sample" "${PKG_PREFIX}/etc/mkencap_environment"; - fi - ;; -esac - -exit 0 |