diff --git a/d/node.js/node.js.SlackBuild b/d/node.js/node.js.SlackBuild index 14807f06..2deb3334 100755 --- a/d/node.js/node.js.SlackBuild +++ b/d/node.js/node.js.SlackBuild @@ -73,7 +73,7 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -echo "$ARCH" | grep -q "64" && sed -i 's|${PREFIX}/lib|${PREFIX}/lib64|g' wscript tools/wafadmin/Tools/node_addon.py +echo "$ARCH" | grep -q "64" && sed -i 's|${PREFIX}/lib|${PREFIX}/lib64|g' wscript ./configure configure \ --prefix=$PREFIX diff --git a/fonts/inconsolata/Inconsolata-dz.otf.zip b/fonts/inconsolata/Inconsolata-dz.otf.zip deleted file mode 100644 index c2a9c658..00000000 Binary files a/fonts/inconsolata/Inconsolata-dz.otf.zip and /dev/null differ diff --git a/fonts/inconsolata/Inconsolata.otf b/fonts/inconsolata/Inconsolata.otf deleted file mode 100644 index 34888982..00000000 Binary files a/fonts/inconsolata/Inconsolata.otf and /dev/null differ diff --git a/fonts/inconsolata/inconsolata.SlackBuild b/fonts/inconsolata/inconsolata.SlackBuild deleted file mode 100755 index facf65cf..00000000 --- a/fonts/inconsolata/inconsolata.SlackBuild +++ /dev/null @@ -1,77 +0,0 @@ -#!/bin/sh - -PRGNAM=$(basename $(pwd)) -VERSION=${VERSION:-$(date +%F | tr -d '-')} -ARCH=noarch -BUILD=${BUILD:-1} -TAG=${TAG:-cyco} - -CWD=$(pwd) - -# Place to build (TMP) package (PKG) and output (OUTPUT) the program: -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -# Create working directories: -mkdir -p $OUTPUT # place for the package to be saved -mkdir -p $PKG # place for the package to be built -rm -rf $PKG/* # always erase old package's contents -rm -rf $OUTPUT/{configure,make,install,error,makepkg}-$PRGNAM.log - # remove old log files - -FONTDIR="/usr/share/fonts/OTF" - -# Move the fonts into place: -mkdir -p $PKG$FONTDIR -( cd $PKG$FONTDIR/ - if [ -e $CWD/Inconsolata.otf ] ; then - cp $CWD/Inconsolata.otf . - else - wget -c http://www.levien.com/type/myfonts/Inconsolata.otf - fi - if [ -e $CWD/Inconsolata-dz.otf.zip ] ; then - unzip $CWD/Inconsolata-dz.otf.zip - else - wget -c http://media.nodnod.net/Inconsolata-dz.otf.zip ; - unzip Inconsolata-dz.otf.zip - rm Inconsolata-dz.otf.zip - fi -) - -# Post-install script: -mkdir -p $PKG/install -cat < $PKG/install/doinst.sh -# Update X font indexes and the font cache: -if [ -x .$XPREF/bin/mkfontdir ]; then - chroot . $XPREF/bin/mkfontscale $FONTDIR - chroot . $XPREF/bin/mkfontdir $FONTDIR -fi -if [ -x .$XPREF/bin/fc-cache ]; then - chroot . $XPREF/bin/fc-cache -f $FONTDIR -fi -EOT - -# Add a package description: -mkdir -p $PKG/install -cat < $PKG/install/slack-desc -$PRGNAM: $PRGNAM (Monospace font) -$PRGNAM: -$PRGNAM: -$PRGNAM: -$PRGNAM: -$PRGNAM: -$PRGNAM: -$PRGNAM: -$PRGNAM: -$PRGNAM: http://www.levien.com/type/myfonts/inconsolata.html -$PRGNAM: http://nodnod.net/2009/feb/12/adding-straight-single-and-double-quotes-inconsola/ -EOF - -# Build the package: -cd $PKG -makepkg --linkadd y --chown n $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.tgz 2>&1 | tee $OUTPUT/makepkg-${PRGNAM}.log -cd $OUTPUT -md5sum ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.tgz > ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.tgz.md5 -cd - -cat $PKG/install/slack-desc | grep "^${PRGNAM}" > $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txt -