diff options
author | Andrzej Telszewski <atelszewski@gmail.com> | 2010-05-13 00:40:57 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-13 00:40:57 +0200 |
commit | 7bb8593a3d7375fe70d26c62f9c4f19d5bd154b6 (patch) | |
tree | 755667c994eecda85e6c48276b8eb0e65ae777b7 /system/microcode_ctl/microcode_ctl.SlackBuild | |
parent | 24f196982d21ed2684b240a830567ecd19954d3c (diff) | |
download | slackbuilds-7bb8593a3d7375fe70d26c62f9c4f19d5bd154b6.tar.gz |
system/microcode_ctl: Updated for version 1.17
Diffstat (limited to 'system/microcode_ctl/microcode_ctl.SlackBuild')
-rw-r--r-- | system/microcode_ctl/microcode_ctl.SlackBuild | 44 |
1 files changed, 33 insertions, 11 deletions
diff --git a/system/microcode_ctl/microcode_ctl.SlackBuild b/system/microcode_ctl/microcode_ctl.SlackBuild index 5fd4e3d0c9..b255490bf6 100644 --- a/system/microcode_ctl/microcode_ctl.SlackBuild +++ b/system/microcode_ctl/microcode_ctl.SlackBuild @@ -6,7 +6,7 @@ PRGNAM=microcode_ctl VERSION=1.17 ARCH=${ARCH:-i486} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} CWD=$(pwd) @@ -20,23 +20,45 @@ rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1 - +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . chmod -R u+w,go+r-w,a-s . -make || exit 1 -strip --strip-unneeded microcode_ctl -mkdir -p $PKG/usr/{sbin,man/man8,doc/$PRGNAM-$VERSION} -cp microcode_ctl $PKG/usr/sbin -cp microcode_ctl.8 $PKG/usr/man/man8 -gzip -9f $PKG/usr/man/man8/microcode_ctl.8 +# use our CFLAGS +sed -i "s/-O2/$SLKCFLAGS/" Makefile + +# look for microcode.dat file in a more appropriate place +sed -i "s|/etc/|/lib/firmware/|" microcode_ctl.c +sed -i "s|/etc/microcode.dat|/lib/firmware/microcode.dat|" \ + microcode_ctl.start + +make \ + PREFIX=/usr \ + RCHOMEDIR=rc.d + +make \ + PREFIX=/usr \ + RCHOMEDIR=rc.d \ + DESTDIR=$PKG \ + install + +# This is way outdated +rm -f $PKG/etc/microcode.dat + +# move init-script into place +mv $PKG/etc/rc.d/microcode_ctl $PKG/etc/rc.d/rc.microcode_ctl.new + +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp Changelog README $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir $PKG/install +cat $CWD/doinst.sh > $PKG/install/doinst.sh cat $CWD/slack-desc > $PKG/install/slack-desc -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |