Files
chromebrew/packages/audacious.rb
Maximilian Downey Twiss eb14c41653 Remove compatibility from packages with incompatible dependencies (#9458)
* Remove i686 compatibility from packages with dependencies incompatible with i686

* Remove armv7l compatibility from packages with dependencies incompatible with arvm7l

* Abort builds/installs if the package has incompatible dependencies
2024-03-11 13:09:12 -04:00

56 lines
1.8 KiB
Ruby

require 'package'
class Audacious < Package
description 'Audacious is an open source audio player.'
homepage 'https://audacious-media-player.org/'
version '3.10.1'
license 'BSD-2'
compatibility 'x86_64 aarch64 armv7l'
source_url 'https://distfiles.audacious-media-player.org/audacious-3.10.1.tar.bz2'
source_sha256 '8366e840bb3c9448c2cf0cf9a0800155b0bd7cc212a28ba44990c3d2289c6b93'
binary_compression 'tar.xz'
binary_sha256({
aarch64: '6597ca2c03a630bc4da5ff6f0543e2dc5a4d7621b9bcdb2828fe49fc3889df9d',
armv7l: '6597ca2c03a630bc4da5ff6f0543e2dc5a4d7621b9bcdb2828fe49fc3889df9d',
x86_64: '5660d4bbee7230c4b2698973b2a82a45e20461dba246fb22fcdbf91be74b9793'
})
depends_on 'audacious_plugins' => :runtime
depends_on 'gdbm'
depends_on 'gtk2'
depends_on 'qt5_base'
depends_on 'mpg123'
depends_on 'xdg_base'
depends_on 'sommelier'
def self.build
system './configure',
"--prefix=#{CREW_PREFIX}",
"--libdir=#{CREW_LIB_PREFIX}",
'--disable-dbus',
'--enable-qt'
system 'make'
end
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
def self.postinstall
puts
puts 'To configure, execute the following:'.lightblue
puts "Type 'audacious' to launch the music player.".lightblue
puts "From the menu, select 'Output' > 'Audio Settings'.".lightblue
puts "Select 'ALSA Output' for the 'Output plugin'.".lightblue
puts "Click 'Settings' to the right of 'ALSA Output'.".lightblue
puts "Select 'sysdefault - Default control device' for 'Mixer device'.".lightblue
puts "Click 'Close' and 'Close' again to save.".lightblue
puts
puts 'To completely remove, execute the following:'.lightblue
puts 'crew remove audacious audacious_plugins'.lightblue
puts 'rm -rf ~/.config/audacious'.lightblue
puts
end
end