mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Add unbuilt firefox to updater-firefox-147.0.2 * Adjust firefox deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust firefox deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Change all sommelier deps to => :logical deps Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix circular dependencies of docbook_xml and docbook_xml412. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Cleanup docbook circular deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix elogind, ffmpeg circular deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Cleanup more circular deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Mark packages from successful builds as automatically buildable. * updater-firefox-147.0.2: Package File Update Run on linux/386 container. * Add filelists and updated packages. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix gstreamer deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Handle missing dlist, update pipewire filelist Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add rsu_client filelist Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Suggested changes. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust elogind deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust docbook heredocs. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
32 lines
961 B
Ruby
32 lines
961 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Berry < Autotools
|
|
description 'Healthy, bite-sized window manager'
|
|
homepage 'https://github.com/JLErvin/berry'
|
|
version '0.1.13'
|
|
license 'MIT'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://github.com/JLErvin/berry.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'be99a832545c2b5c21fcfa583c00fdfc95c292d560255338a3a059cfd023fb82',
|
|
armv7l: 'be99a832545c2b5c21fcfa583c00fdfc95c292d560255338a3a059cfd023fb82',
|
|
x86_64: '7a8f5f9731eb17735192527c125a2fd4f3c41581be5d1b92d6c79dd9906e858d'
|
|
})
|
|
|
|
depends_on 'fontconfig' # R
|
|
depends_on 'freetype'
|
|
depends_on 'glibc' # R
|
|
depends_on 'harfbuzz' # R
|
|
depends_on 'libx11'
|
|
depends_on 'libxft' # R
|
|
depends_on 'libxinerama' # R
|
|
depends_on 'sommelier' => :logical
|
|
|
|
def self.postinstall
|
|
ExitMessage.add 'A hotkey system such as sxhkd is needed in order to use berry as a WM'.lightblue
|
|
end
|
|
end
|