General TC > Programming & Scripting - Unofficial

Build script to create extension

(1/2) > >>

bmarkus:
This is my actual build script used to create libidn extension. While extensions may require modification of the script it can be a good startup.

According to the new rules it creates .tcz only using quashfs. There are four extensions created:

1) base - this contains files needed to use the program
2) dev - additional files required to compile other programs depending on this
3) doc - doc files
4) locale - language files

Of course depending on the program certain extensions are not necessary to create, except base.



--- Quote ---
#!/bin/sh
#
######################################################
# libidn                                             #
#                                                    #
# Build script for TinyCore 2.x                      #
#                                                    #
# See .info for details                              #
#                                                    #
# September 16, 2009                                 #
######################################################

######################################################
# Configure extension creation parameters            #
######################################################

SRCNAM=libidn-1.15.tar.gz
WRKDIR=libidn-1.15
EXTNAM=libidn
TMPDIR=/tmp/libidn
EXTYPE="l"

######################################################
# Prepare extension creation                         #
######################################################

# Remove dirs and files left from previous creation

rm -r -f $WRKDIR

rm -r -f $TMPDIR
rm -r -f $TMPDIR-doc
rm -r -f $TMPDIR-dev
rm -r -f $TMPDIR-locale

# Crete temporary directory

mkdir -p $TMPDIR

######################################################
# Compile extension                                  #
######################################################

# Export variables needed for compilation

export CFLAGS="-march=i486 -mtune=i686 -Os -pipe"
export CXXFLAGS="-march=i486 -mtune=i686 -Os -pipe -fno-exceptions -fno-rtti"
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/lib/pkgconfig

# Unpack source in current directory

tar -xf $SRCNAM

# Configure it

cd $WRKDIR
./configure --prefix=/usr/local

# Compile

make

# Install in base temp dir

make install DESTDIR=$TMPDIR

# Delete compilation work directory

cd ..
rm -r -f $WRKDIR

# Remove unneded dirs and files

# Adjust directory access rigths

find $TMPDIR/ -type d | xargs chmod -v 755;

# Strip executables

find $TMPDIR | xargs file | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded

# Move files to doc extension

mkdir -p $TMPDIR-doc/usr/local/share
mv $TMPDIR/usr/local/share/man $TMPDIR-doc/usr/local/share
mv $TMPDIR/usr/local/share/info $TMPDIR-doc/usr/local/share
mv $TMPDIR/usr/local/share/emacs $TMPDIR-doc/usr/local/share

# Move files to dev extension

mkdir -p $TMPDIR-dev/usr/local/lib
mv $TMPDIR/usr/local/include $TMPDIR-dev/usr/local
mv $TMPDIR/usr/local/lib/*.a $TMPDIR-dev/usr/local/lib
mv $TMPDIR/usr/local/lib/*.la $TMPDIR-dev/usr/local/lib
mv $TMPDIR/usr/local/lib/pkgconfig $TMPDIR-dev/usr/local/lib

# Move files to locale extension

mkdir -p $TMPDIR-locale/usr/local/share
mv $TMPDIR/usr/local/share/locale $TMPDIR-locale/usr/local/share

###################################################
# Create base extension in temp dir               #
###################################################

cd $TMPDIR
cd ..
mksquashfs $TMPDIR $EXTNAM.tcz$EXTYPE
cd $TMPDIR
find usr -not -type d > $EXTNAM.tcz$EXTYPE.list
mv ../$EXTNAM.tcz$EXTYPE .

# Create md5 file

md5sum $EXTNAM.tcz$EXTYPE > $EXTNAM.tcz$EXTYPE.md5.txt

# Cleanup temp directory

rm -r -f usr  

###################################################
# Create doc extension in temp dir                #
###################################################

cd $TMPDIR-doc
cd ..
mksquashfs $TMPDIR-doc $EXTNAM-doc.tcz
cd $TMPDIR-doc
find usr -not -type d > $EXTNAM-doc.tcz.list
mv ../$EXTNAM-doc.tcz .

# Create md5 file

md5sum $EXTNAM-doc.tcz > $EXTNAM-doc.tcz.md5.txt

# Cleanup temp directory

rm -r -f usr  

###################################################
# Create dev extension in temp dir                #
###################################################

cd $TMPDIR-dev
cd ..
mksquashfs $TMPDIR-dev $EXTNAM-dev.tcz
cd $TMPDIR-dev
find usr -not -type d > $EXTNAM-dev.tcz.list
mv ../$EXTNAM-dev.tcz .

# Create md5 file

md5sum $EXTNAM-dev.tcz > $EXTNAM-dev.tcz.md5.txt

# Cleanup temp directory

rm -r -f usr  

###################################################
# Create locale extension in temp dir             #
###################################################

cd $TMPDIR-locale
cd ..
mksquashfs $TMPDIR-locale $EXTNAM-locale.tcz
cd $TMPDIR-locale
find usr -not -type d > $EXTNAM-locale.tcz.list
mv ../$EXTNAM-locale.tcz .

# Create md5 file

md5sum $EXTNAM-locale.tcz > $EXTNAM-locale.tcz.md5.txt

# Cleanup temp directory

rm -r -f usr

--- End quote ---

EDIT: .filelist changed to .list upon advice of JW

MikeLockmoore:
Looks like a nice generalized approach.  I think I'll use this as a template in the future.
--
Mike L.

jpeters:
In general, I've found installing to temp destinations problematic. 

bigpcman:

--- Quote from: jpeters on September 17, 2009, 09:24:31 PM ---In general, I've found installing to temp destinations problematic. 

--- End quote ---
Could you be more specific?

jpeters:

--- Quote from: bigpcman on September 17, 2009, 10:11:34 PM ---
--- Quote from: jpeters on September 17, 2009, 09:24:31 PM ---In general, I've found installing to temp destinations problematic. 

--- End quote ---
Could you be more specific?

--- End quote ---

Links in the extension can end up pointing to the temp destination. Using touch /tmp/mark before installing, and finding with -newer /tmp/mark ensures all the links will be where you want them.

Navigation

[0] Message Index

[#] Next page

Go to full version