mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* Update buildsystems, update jq, add jq to core for arm. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Only report build options if they exist. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix overeager sed replacement. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * workflow debugging Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add logging for build errors. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Revert to function in each package file. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update jq since it needs gcc14 to build. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to buildsystems * remove deprecated gfbgraph Signed-off-by: Satadru Pramanik <satadru@gmail.com> * fix git tag for gnome_maps Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update llvm20 package file. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update gnome_maps deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Abstract out buildsystems_methods reporting. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Keep LIBC_VERSION const from being empty. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update crew_profile_base and libxml2 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * clarify Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update libarchive Signed-off-by: Satadru Pramanik <satadru@gmail.com> * update libavif Signed-off-by: Satadru Pramanik <satadru@gmail.com> * more updates Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add libxml2 build comment. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add build comment to libarchive. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Don't warn for missing directory during package removal. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
43 lines
1.5 KiB
Ruby
43 lines
1.5 KiB
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Ecasound < Autotools
|
|
description 'Ecasound is a software package designed for multitrack audio processing.'
|
|
homepage 'https://ecasound.seul.org/ecasound/'
|
|
version '2.9.3'
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url 'https://git.code.sf.net/p/ecasound/code' # The github repository does not have the tags.
|
|
git_hashtag "v#{version.gsub('.', '_')}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'b0673a7d622b71db4c881d570691218f739b1b6092ab01617d3ab070de2633b7',
|
|
armv7l: 'b0673a7d622b71db4c881d570691218f739b1b6092ab01617d3ab070de2633b7',
|
|
i686: 'be223ffc0ba90c8e8b37890ac26cc546d6a56a6794abc1148836a9118b1a417f',
|
|
x86_64: 'e51ceabd4f781a0f172ab2a446dd7349f71a2fe8ee396f23a3f583ba0da8d28e'
|
|
})
|
|
|
|
def self.patch
|
|
# Allow building as shared library
|
|
downloader 'https://patch-diff.githubusercontent.com/raw/kaivehmanen/ecasound/pull/4.patch', 'a5caeb1dfe580f1e338dddd849ed18f7ce3a32f83c5ea63297e4cbaeadc3088b'
|
|
system 'git apply 4.patch'
|
|
|
|
# build: Use PKG_CHECK_MODULES to find readline
|
|
downloader 'https://patch-diff.githubusercontent.com/raw/kaivehmanen/ecasound/pull/6.patch', '11aa2f31665172c3ab98e136f021e55e6c2e7b11e0fc5e05e9ea449e3d32af8b'
|
|
system 'git apply 6.patch'
|
|
end
|
|
|
|
depends_on 'alsa_lib'
|
|
depends_on 'flac'
|
|
depends_on 'libogg' # R
|
|
depends_on 'libsndfile'
|
|
depends_on 'libvorbis' # R
|
|
depends_on 'ncurses' # R
|
|
depends_on 'opus' # R
|
|
depends_on 'readline'
|
|
depends_on 'ruby'
|
|
|
|
autotools_configure_options '--disable-pyecasound'
|
|
run_tests
|
|
end
|