Changeset 2257bd7 for custom


Ignore:
Timestamp:
10/14/2021 06:51:49 AM (3 years ago)
Author:
Pierre Labastie <pierre.labastie@…>
Branches:
ablfs-more, legacy, trunk
Children:
2718053
Parents:
e22aa96
Message:

Update and fix documentation of custom tools

Location:
custom
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • custom/examples/941-pcre

    re22aa96 r2257bd7  
    1010   unset $i
    1111done
    12 PATCH1="http://www.linuxfromscratch.org/patches/blfs/7.8/pcre-8.37-upstream_fixes-1.patch 718c4314fba52ed559c75ff7660cc391"
     12PATCH1="https://www.linuxfromscratch.org/patches/downloads/pcre/pcre-8.37-upstream_fixes-1.patch 718c4314fba52ed559c75ff7660cc391"
    1313
    1414( cat << "xEOFx"
  • custom/examples/963-gpm

    re22aa96 r2257bd7  
    55PKG_VERSION="1.20.7"
    66PKG_FILE="gpm-${PKG_VERSION}.tar.bz2"
    7 URL="http://www.nico.schottelius.org/software/gpm/archives/${PKG_FILE}"
     7URL="https://anduin.linuxfromscratch.org/BLFS/gpm/${PKG_FILE}"
    88MD5="bf84143905a6a903dbd4d4b911a2a2b8"
    99for i in PATCH{1..10}; do
    1010   unset $i
    1111done
     12PATCH1="https://www.linuxfromscratch.org/patches/blfs/svn/gpm-1.20.7-consolidated-1.patch"
    1213
    1314( cat << "xEOFx"
    1415
    15 ./autogen.sh                                &&
    16 ./configure --prefix=/usr --sysconfdir=/etc &&
     16patch -Np1 -i ../gpm-1.20.7-consolidated-1.patch &&
     17./autogen.sh                                     &&
     18./configure --prefix=/usr --sysconfdir=/etc      &&
    1719make
    1820
     
    2224             /usr/share/info/gpm.info                 &&
    2325
     26rm -fv /usr/lib/libgpm.a                              &&
    2427ln -sfv libgpm.so.2.1.0 /usr/lib/libgpm.so            &&
    2528install -v -m644 conf/gpm-root.conf /etc              &&
    2629
    27 install -v -m755 -d /usr/share/doc/gpm-${PKG_FILE}/support &&
     30install -v -m755 -d /usr/share/doc/gpm-1.20.7/support &&
    2831install -v -m644    doc/support/*                     \
    29                     /usr/share/doc/gpm-${PKG_FILE}/support &&
     32                    /usr/share/doc/gpm-1.20.7/support &&
    3033install -v -m644    doc/{FAQ,HACK_GPM,README*}        \
    31                     /usr/share/doc/gpm-${PKG_FILE}
     34                    /usr/share/doc/gpm-1.20.7
    3235
    3336# The normal cmd to install the boot script for gpm
  • custom/template

    re22aa96 r2257bd7  
    1414done
    1515PATCH1=""
     16# Up to 10 patches can be added. The PATCH variable must be numbered
     17# even if there is only one. If the patch md5 checksum is known, add
     18# it after the name as in (quotes are required):
     19# PATCHx="patch-url md5"
    1620
    1721( cat << "xEOFx"
    18 
     22# Your script here. Be aware that it is passed
     23# verbatim, and that none of the above variables
     24# will be defined when running the script. For example,
     25# If you want to use ${PKG_VERSION}, you have to
     26# redefine it here.
    1927xEOFx
    2028) > tmp
Note: See TracChangeset for help on using the changeset viewer.