1 | # $Id$
|
---|
2 | # function for packing and installing a tree. We only have access
|
---|
3 | # to variables PKGDIR and PKG_DEST
|
---|
4 | # Other variables can be passed on the command line, or in the environment
|
---|
5 |
|
---|
6 | packInstall() {
|
---|
7 |
|
---|
8 | # A proposed implementation for versions and package names.
|
---|
9 | local PCKGVRS=$(basename $PKGDIR)
|
---|
10 | local TGTPKG=$(basename $PKG_DEST)
|
---|
11 | local PACKAGE=$(echo ${TGTPKG} | sed 's/^[0-9]\{3,4\}-//' |
|
---|
12 | sed 's/^[0-9]\{2\}-//')
|
---|
13 | # version is only accessible from PKGDIR name. Since the format of the
|
---|
14 | # name is not normalized, several hacks are necessary...
|
---|
15 | case $PCKGVRS in
|
---|
16 | expect*|tcl*) local VERSION=$(echo $PCKGVRS | sed 's/^[^0-9]*//') ;;
|
---|
17 | vim*|unzip*) local VERSION=$(echo $PCKGVRS | sed 's/^[^0-9]*\([0-9]\)\([0-9]\)/\1.\2/') ;;
|
---|
18 | tidy*) local VERSION=$(echo $PCKGVRS | sed 's/^[^0-9]*\([0-9]*\)/\1cvs/') ;;
|
---|
19 | docbook-xml) local VERSION=4.5 ;;
|
---|
20 | *) local VERSION=$(echo ${PCKGVRS} | sed 's/^.*[-_]\([0-9]\)/\1/' |
|
---|
21 | sed 's/_/./g');;
|
---|
22 | # the last sed above is because some package managers do not want a '_'
|
---|
23 | # in version.
|
---|
24 | esac
|
---|
25 | local ARCHIVE_NAME=$(dirname ${PKGDIR})/${PACKAGE}_${VERSION}.deb
|
---|
26 | case $(uname -m) in
|
---|
27 | x86_64) local ARCH=amd64 ;;
|
---|
28 | *) local ARCH=i386 ;;
|
---|
29 | esac
|
---|
30 |
|
---|
31 | pushd $PKG_DEST
|
---|
32 | rm -fv ./usr/share/info/dir # recommended since this directory is already there
|
---|
33 | # on the system
|
---|
34 | # The next lines are specific to dpkg, but usually all package managers
|
---|
35 | # need some information on the version and the package.
|
---|
36 | mkdir DEBIAN
|
---|
37 | cat > DEBIAN/control <<EOF
|
---|
38 | Package: $PACKAGE
|
---|
39 | Version: $VERSION
|
---|
40 | Maintainer: Pierre Labastie <lnimbus@club-internet.fr>
|
---|
41 | Description: $PACKAGE
|
---|
42 | Architecture: $ARCH
|
---|
43 | EOF
|
---|
44 | # Building the binary package
|
---|
45 | dpkg-deb -b . $ARCHIVE_NAME
|
---|
46 | # Installing it on LFS
|
---|
47 | dpkg -i $ARCHIVE_NAME
|
---|
48 | # Storing the package (recommended).
|
---|
49 | mv -v $ARCHIVE_NAME /var/lib/packages
|
---|
50 | popd # Since the $PKG_DEST directory is destroyed
|
---|
51 | # immediately after the return of the function,
|
---|
52 | # getting back to $PKGDIR is important...
|
---|
53 | }
|
---|