Files
chromebrew/packages/audacious_plugins.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

36 lines
1.0 KiB
Ruby

require 'package'
class Audacious_plugins < Package
description 'Audacious is an open source audio player.'
homepage 'https://audacious-media-player.org/'
version '3.10.1'
license 'GPL-2'
compatibility 'x86_64 aarch64 armv7l'
source_url 'https://distfiles.audacious-media-player.org/audacious-plugins-3.10.1.tar.bz2'
source_sha256 'eec3177631f99729bf0e94223b627406cc648c70e6646e35613c7b55040a2642'
binary_compression 'tar.xz'
binary_sha256({
aarch64: '200f784576d153da7d23ee308f32587957faf8e9108b197991c841d3cac46f18',
armv7l: '200f784576d153da7d23ee308f32587957faf8e9108b197991c841d3cac46f18',
x86_64: '5a9c46fceaa2c6307fd4791b4bb68133d412a27ba013105345ab64f0964f6e0b'
})
depends_on 'audacious'
depends_on 'flac'
depends_on 'mpg123'
depends_on 'neon'
depends_on 'wavpack'
def self.build
system './configure',
"--prefix=#{CREW_PREFIX}",
"--libdir=#{CREW_LIB_PREFIX}"
system 'make'
end
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
end