Files
BMLFS/build-scripts/audacious.build
2022-03-18 16:10:38 -05:00

66 lines
2.5 KiB
Bash

#! /bin/bash
# Audacious
# Source: https://distfiles.audacious-media-player.org/audacious-4.1.tar.bz2
#
# $BUILD = Directory to temporarily install
# $PKGS = Directory to store built packages
#
# DEPS
# Required: GTK+2 or Qt5, libxml, Xorg system
# Recommended: Alsa-lib, dbus, gnome-icon-theme
# Optional: valgrind
#
# NOTE: Required audacious-plugins
# No longer building GTK+2
LDFLAGS=" -Wl,-rpath=/opt/qt5/lib" \
TPUT=/bin/true ./configure --prefix=/usr \
--with-buildstamp="BMLFS" \
--disable-gtk $BUILDTRUPLE &&
read -p "Compile?" && make -j2 &&
sudo -S make DESTDIR=$BUILD install &&
sudo -S mkdir -pv /BMAN/install /BMAN/usr/share && \
sudo -S mv $BUILD/usr/share/man /BMAN/usr/share/ && \
cd $BUILD && sudo -S mkdir -v ${BUILD}/install &&
cat > /tmp/slack-desc << "EOF"
# HOW TO EDIT THIS FILE:
# The "handy ruler" below makes it easier to edit a package description. Line
# up the first '|' above the ':' following the base package name, and the '|'
# on the right side marks the last column you can put a character in. You must
# make exactly 11 lines for the formatting to be correct. It's also
# customary to leave one space after the ':' except on otherwise blank lines.
|-----handy-ruler------------------------------------------------------|
audacious: audacious (A relatively powerful media player)
audacious:
audacious: Audacious is a media player, based on Beep Media Player, which is in
audacious: turn based on the X Multimedia System (XMMS). It is used to play
audacious: audio and other kinds of media files. By default Audacious can play
audacious: MPEG audio, Ogg Vorbis, RIFF wav, most module formats, and a few
audacious: other formats. Audacious can be extended through plugins to play a
audacious: number of other audio and video formats.
audacious:
audacious: The webpage for Audacious is: http://www.audacious-media-player.org.
audacious:
EOF
sudo -S mv -v /tmp/slack-desc install/ &&
sudo -S makepkg -l y -c n $PKGS/audacious-4.1-$(uname -m)-mlfs.txz && \
cd /BMAN && \
cat > /tmp/slack-desc << "EOF"
audacious-doc: Manuals for audacious (A relatively powerful media player)
audacious-doc:
audacious-doc: A media player, based on Beep Media Player, which is in turn
audacious-doc: based on the X Multimedia System (XMMS).
audacious-doc:
audacious-doc: http://www.audacious-media-player.org
audacious-doc:
EOF
sudo -S mv -v /tmp/slack-desc install/ &&
sudo -S makepkg -l y -c n $PKGS/audacious-doc-4.1-norch-mlfs.txz && \
sudo -S rm -rf ${BUILD}/* /BMAN/*