simplify (what was I thinking⸘)
This commit is contained in:
parent
9bfcc5265a
commit
073d6a7485
1 changed files with 37 additions and 49 deletions
|
@ -19,68 +19,57 @@ PKG=$TMP/pkg-$PRGNAM
|
||||||
PREFIX=/usr
|
PREFIX=/usr
|
||||||
|
|
||||||
# Cleaning
|
# Cleaning
|
||||||
( cd $TMP
|
cd $TMP
|
||||||
rm -fr $PRGNAM-$VERSION
|
rm -fr $PRGNAM-$VERSION
|
||||||
rm -fr $PKG
|
rm -fr $PKG
|
||||||
)
|
|
||||||
|
|
||||||
# Fetching sources
|
# Fetching sources
|
||||||
( cd $TMP
|
[ ! -e $CWD/$PRGNAM-$VERSION.tar.?z* ] && wget -c http://www.rpl2.net/download/$PRGNAM-$VERSION.tar.bz2 -O $CWD/$PRGNAM-$VERSION.tar.bz2
|
||||||
[ ! -e $CWD/$PRGNAM-$VERSION.tar.?z* ] && wget -c http://www.rpl2.net/download/$PRGNAM-$VERSION.tar.bz2 -O $CWD/$PRGNAM-$VERSION.tar.bz2
|
tar xvf $CWD/$PRGNAM-$VERSION.tar.?z*
|
||||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.?z*
|
|
||||||
)
|
|
||||||
|
|
||||||
# Preparation
|
# Preparation
|
||||||
( cd $TMP/$PRGNAM-$VERSION
|
cd $PRGNAM-$VERSION
|
||||||
chown -R root:root .
|
chown -R root:root .
|
||||||
find . \
|
find . \
|
||||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||||
-exec chmod 755 {} \; -o \
|
-exec chmod 755 {} \; -o \
|
||||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||||
-exec chmod 644 {} \;
|
-exec chmod 644 {} \;
|
||||||
)
|
|
||||||
|
|
||||||
# Configuration
|
# Configuration
|
||||||
( cd $TMP/$PRGNAM-$VERSION
|
./configure \
|
||||||
./configure \
|
|
||||||
--prefix=$PREFIX \
|
--prefix=$PREFIX \
|
||||||
--mandir=$PREFIX/man \
|
--mandir=$PREFIX/man \
|
||||||
--infodir=$PREFIX/info \
|
--infodir=$PREFIX/info \
|
||||||
--libdir=$PREFIX/lib$LIBSUFFIX \
|
--libdir=$PREFIX/lib$LIBSUFFIX \
|
||||||
--enable-experimental #I heart danger
|
--enable-experimental #I heart danger
|
||||||
)
|
|
||||||
|
|
||||||
# Building
|
# Building
|
||||||
( cd $TMP/$PRGNAM-$VERSION
|
make
|
||||||
make
|
|
||||||
)
|
|
||||||
|
|
||||||
# Installation
|
# Installation
|
||||||
( cd $TMP/$PRGNAM-$VERSION
|
make install DESTDIR=$PKG
|
||||||
make install DESTDIR=$PKG
|
|
||||||
)
|
|
||||||
|
|
||||||
# Cleaning
|
# Cleaning
|
||||||
( cd $PKG
|
cd $PKG
|
||||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||||
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||||
|
|
||||||
find $PKG$PREFIX/man -type f -name "*.?" -exec gzip -9 {} \;
|
find $PKG$PREFIX/man -type f -name "*.?" -exec gzip -9 {} \;
|
||||||
find $PKG$PREFIX/info -name "dir" -exec rm {} \;
|
find $PKG$PREFIX/info -name "dir" -exec rm {} \;
|
||||||
find $PKG$PREFIX/info -type f -exec gzip -9 {} \;
|
find $PKG$PREFIX/info -type f -exec gzip -9 {} \;
|
||||||
|
|
||||||
chown -R root:root .
|
chown -R root:root .
|
||||||
find . \
|
find . \
|
||||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||||
-exec chmod 755 {} \; -o \
|
-exec chmod 755 {} \; -o \
|
||||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||||
-exec chmod 644 {} \;
|
-exec chmod 644 {} \;
|
||||||
)
|
|
||||||
|
|
||||||
# Packaging
|
# Packaging
|
||||||
( cd $PKG
|
mkdir install
|
||||||
mkdir install
|
cat <<EOF > $PKG/install/doinst.sh
|
||||||
cat <<EOF > $PKG/install/doinst.sh
|
|
||||||
cd /usr/info
|
cd /usr/info
|
||||||
for file in \$(ls *.gz | grep -v ".*\-[0-9]\+\.gz")
|
for file in \$(ls *.gz | grep -v ".*\-[0-9]\+\.gz")
|
||||||
do
|
do
|
||||||
|
@ -88,7 +77,7 @@ do
|
||||||
done
|
done
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
cat <<EOF > $PKG/install/slack-desc
|
cat <<EOF > $PKG/install/slack-desc
|
||||||
$PRGNAM: $PRGNAM (programming language)
|
$PRGNAM: $PRGNAM (programming language)
|
||||||
$PRGNAM:
|
$PRGNAM:
|
||||||
$PRGNAM: a programming language designed for scientific computations.
|
$PRGNAM: a programming language designed for scientific computations.
|
||||||
|
@ -102,6 +91,5 @@ $PRGNAM: http://www.rpl2.net/
|
||||||
$PRGNAM:
|
$PRGNAM:
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
makepkg -l y -c n $OUTPUT/$PRGNAM-$(echo $VERSION | tr -d '-')-$ARCH-$BUILD$TAG.txz
|
makepkg -l y -c n $OUTPUT/$PRGNAM-$(echo $VERSION | tr -d '-')-$ARCH-$BUILD$TAG.txz
|
||||||
)
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue