diff options
author | B. Watson <yalhcru@gmail.com> | 2022-04-02 14:16:07 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2022-04-02 14:16:07 -0400 |
commit | 5142959baa9e9da6218a5f4548b953f317f21923 (patch) | |
tree | 6b8b6db07de7b44934999e7178b041f3a810ee4c /audio/alsa-tools | |
parent | 060c98ed32637e6e626f48c317428cac8acde7fc (diff) |
audio/alsa-tools: Remove bad symlinks, empty /etc dir.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'audio/alsa-tools')
-rw-r--r-- | audio/alsa-tools/alsa-tools.SlackBuild | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/audio/alsa-tools/alsa-tools.SlackBuild b/audio/alsa-tools/alsa-tools.SlackBuild index 59e82b21bb2f3..a74fcefc0160c 100644 --- a/audio/alsa-tools/alsa-tools.SlackBuild +++ b/audio/alsa-tools/alsa-tools.SlackBuild @@ -13,6 +13,7 @@ # the firmware is being included in the package as well. # *** I agree. --rworkman :-) +# 20220402 bkw: BUILD=2, remove broken symlinks, empty /etc dir # 20210804 bkw: update for 1.2.5 (firmware 1.2.4) # 20200224 bkw: update for 1.2.2 (firmware 1.2.1) # 20181204 bkw: update for 1.1.7 @@ -223,6 +224,13 @@ for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; r rm -f $PKG/usr/lib*/*.la +# 20220402 bkw: the firmware tarball doesn't include this firmware, +# but 'make install' creates *broken* symlinks to it. +rm -rf $PKG/lib/firmware/turtlebeach/ + +# 20220402 bkw: /etc is included in the package for no apparent reason. +rmdir $PKG/etc + mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/doinst.sh > $PKG/install/doinst.sh |