CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
added .gitignore file
[pkgutils-cross.git] / pkgadd-cross
1 #!/bin/sh
2
3 TOPDIR="$(cd $(dirname $(which $0)); pwd)"
4
5 PKGADD=$TOPDIR/src/pkgadd
6 PKGMK_CONF=$TOPDIR/src/pkgmk.conf
7 . $PKGMK_CONF
8
9 if [ -z "$CLFS" ]; then
10 echo "Error, '\$CLFS' value not found"
11 echo "Please configure '$PKGMK_CONF' before use $(basename $0)"
12 exit 1
13 fi
14
15 if [ ! -f $CLFS/var/lib/pkg/db ]; then
16 install -d -m 0755 $CLFS/var/lib/pkg
17 touch $CLFS/var/lib/pkg/db
18 fi
19
20 $PKGADD -r $CLFS $@
21
22 # we shoudl avoid .la files when crosscompiling, these files
23 # contains the libdir variable hardcoded which is used by libtool
24 [ $? -eq 0 ] && find $CLFS -type f -name '*.la' -delete
25
26 # End of file