forked from pacstall/pacstall-programs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsrclist
More file actions
16929 lines (16066 loc) · 577 KB
/
srclist
File metadata and controls
16929 lines (16066 loc) · 577 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
### Auto-generated for pacstall-programs
### DO NOT EDIT. Use scripts/srcinfo.sh to build.
---
pkgbase = 1password-cli-bin
gives = 1password-cli
pkgver = 2.31.1
pkgdesc = 1Password CLI
arch = amd64
maintainer = Oren Klopfer <oren@taumoda.com>
repology = project: 1password-cli
source = @1password-cli-bin~2.31.1::https://cache.agilebits.com/dist/1P/op2/pkg/v2.31.1/op_linux_amd64_v2.31.1.zip
sha256sums = 2e98f0df5977f57bcb2f3e8835e2837660ee4915456ee8ed124e0588a429a5c9
pkgname = 1password-cli-bin
---
pkgbase = 86box-app
gives = 86box
pkgver = 4.2.1
pkgdesc = Open source x86 emulator
url = https://86box.net
arch = amd64
maintainer = James Ed Randson <jimedrand@disroot.org>
source = https://github.com/86Box/86Box/releases/download/v4.2.1/86Box-Linux-x86_64-b6130.AppImage
sha256sums = e049a364bc50307f7db9703960de7b6b1e3d35a7804800e98ce34ff9ba447e53
pkgname = 86box-app
---
pkgbase = abdownloadmanager
pkgver = 1.6.8
pkgdesc = Desktop app which lets you manage and organize your download files better than before
arch = amd64
license = Apache-2.0
maintainer = villamorrd <villamorrd@students.nu-moa.edu.ph>
repology = project: abdownloadmanager
source = https://github.com/amir1376/ab-download-manager/releases/download/v1.6.8/ABDownloadManager_1.6.8_linux_x64.tar.gz
sha256sums = 355be492ca0a4b852da0619782590c6359ff124686fb277a5c30c4452c9b2725
pkgname = abdownloadmanager
---
pkgbase = adapta-gtk-theme-git
gives = adapta-gtk-theme
pkgver = 3.95.0.11
pkgdesc = An adaptive Gtk+ theme based on Material Design Guidelines (Legacy)
arch = any
makedepends = parallel
makedepends = autoconf
makedepends = automake
makedepends = inkscape
makedepends = libgdk-pixbuf2.0-dev
makedepends = libglib2.0-dev
makedepends = libxml2-utils
makedepends = pkg-config
makedepends = sassc
breaks = adapta
maintainer = Elsie19 <elsie19@pm.me>
source = https://github.com/adapta-project/adapta-gtk-theme.git
pkgname = adapta-gtk-theme-git
---
pkgbase = adw-gtk-theme
pkgver = 1.1
pkgdesc = LibAdwaita Theme for all GTK3 and GTK4 Apps NOTE: This is a meta package which uses adw-gtk3 for GTK3 and official LibAdwaita theme for GTK4
arch = all
depends = libadwaita-1-0
pacdeps = adw-gtk3
maintainer = Oren Klopfer <oren@taumoda.com>
source = extract-libadwaita-theme.hook
source = extract-libadwaita-theme.sh
source = index.theme.light
source = index.theme.dark
sha256sums = 477d83d73a19edee113a1161887f338ab1ea8496fbeaf653e8b47038ce6fa506
sha256sums = 130d4ba56c99793851b36826a6fd3359fef49ffff61dd41cf3d01ce4a5ee94ca
sha256sums = 4ef59f634c0d696a82851f89ef92798dfe554eedb2a514de469eb789016aed5a
sha256sums = 66e436ab0968d8c126fa7f274baa40cad2c36792fae3689e75c36231b0138063
pkgname = adw-gtk-theme
---
pkgbase = adw-gtk3
gives = adw-gtk3
pkgver = 6.4
pkgdesc = An unofficial GTK3 port of libadwaita.
arch = any
breaks = adw-gtk3
breaks = adw-gtk3-git
maintainer = Herisson <spaceguybox@outlook.com>
maintainer = James Ed Randson <jimedrand@disroot.org>
repology = project: adw-gtk3
source = @adw-gtk3-6.4::https://github.com/lassekongo83/adw-gtk3/releases/download/v6.4/adw-gtk3v6.4.tar.xz
sha256sums = c396e4f0df3eea081186ae13321345f21b9934691b4b4d75b4956f00cbd033d1
pkgname = adw-gtk3
---
pkgbase = alacritty
pkgver = 0.15.1
pkgdesc = A fast, cross-platform, OpenGL terminal emulator
arch = any
makedepends = cargo
makedepends = cmake
makedepends = pkg-config
makedepends = libfreetype6-dev
makedepends = libfontconfig1-dev
makedepends = libxcb-xfixes0-dev
makedepends = python3
makedepends = gzip
makedepends = scdoc
incompatible = debian:bullseye
incompatible = debian:bookworm
maintainer = Warofzen <warofzen1@protonmail.com>
repology = project: alacritty
source = @alacritty~0.15.1::https://github.com/alacritty/alacritty/archive/refs/tags/v0.15.1.tar.gz
sha256sums = b814e30c6271ae23158c66e0e2377c3600bb24041fa382a36e81be564eeb2e36
pkgname = alacritty
---
pkgbase = amf-headers
pkgver = 1.4.36
pkgdesc = Header files for AMD Advanced Media Framework
url = https://github.com/GPUOpen-LibrariesAndSDKs/AMF/
arch = all
makedepends = git
license = MIT
maintainer = Luis Garcia <pacstall@luigi311.com>
repology = project: amf-headers
source = @amf-headers~1.4.36::https://github.com/GPUOpen-LibrariesAndSDKs/AMF/releases/download/v1.4.36/AMF-headers-v1.4.36.tar.gz
sha256sums = ec07ee21b820a73f5bae224e92fd3c492f52732d4885f0637f48189afdd87564
pkgname = amf-headers
---
pkgbase = amfora-bin
gives = amfora
pkgver = 1.11.0
pkgdesc = Amfora aims to be the best looking Gemini client with the most features
arch = amd64
breaks = amfora
breaks = amfora-git
breaks = amfora-deb
breaks = amfora-app
maintainer = Elsie19 <elsie19@pm.me>
repology = project: amfora
source = https://github.com/makew0rld/amfora/releases/download/v1.11.0/amfora_1.11.0_linux_64-bit
source = amfora.png::https://roboticoverlords.org/amfora.png
source = amfora.desktop::https://raw.githubusercontent.com/makew0rld/amfora/master/amfora.desktop
sha256sums = a8ac319fd43af5ea7ce967caa4d3d00d20fca7aa8de0fda30a3e0ddde985b3a3
sha256sums = 3d029d05cff8c42e82685ce7a61fcaa2118e4cbb6a547816a7d5150868a11092
sha256sums = 812e1faad6f6d4817eac60d36813472afebe2980cd2e661151a3d98669274207
pkgname = amfora-bin
---
pkgbase = an-anime-game-launcher-bin
gives = an-anime-game-launcher
pkgver = 3.16.0
pkgdesc = Launcher for a specific anime game with auto-patching, discord rpc and time tracking
arch = amd64
depends = git
depends = p7zip-full
depends = webp
depends = openssl
optdepends = mangohud: FPS Hud/GUI
optdepends = gamemode: Game Optimizations
optdepends = vkbasalt: Required to use custom shaders (install this and reshade-shaders-git)
breaks = an-anime-game-launcher
breaks = an-anime-game-launcher-deb
breaks = an-anime-game-launcher-app
breaks = an-anime-game-launcher-git
incompatible = ubuntu:bionic
incompatible = ubuntu:focal
incompatible = ubuntu:jammy
incompatible = ubuntu:kinetic
incompatible = debian:stretch
incompatible = debian:buster
incompatible = debian:bullseye
maintainer = Elsie19 <elsie19@pm.me>
repology = project: an-anime-game-launcher
source = https://github.com/an-anime-team/an-anime-game-launcher/releases/download/3.16.0/anime-game-launcher
source = icon.png::https://raw.githubusercontent.com/an-anime-team/an-anime-game-launcher/main/assets/images/icon.png
sha256sums = 8d447e2132cb6454191d901bd0b16b40f7c7e5d194ca1cad24d705f8cf330189
sha256sums = SKIP
pkgname = an-anime-game-launcher-bin
---
pkgbase = ananicy-cpp
pkgver = 1.1.0
pkgdesc = Rewrite of Ananicy in C++
arch = any
makedepends = cmake
makedepends = g++
makedepends = libsystemd-dev
makedepends = ninja-build
repology = project: ananicy-cpp
source = @ananicy-cpp~1.1.0::https://gitlab.com/ananicy-cpp/ananicy-cpp/-/archive/v1.1.0/ananicy-cpp-v1.1.0.tar.gz
sha256sums = 49f59e8fa842c7603be344b7317eace773c3e416d881dae4ad7779b39b03fc4a
pkgname = ananicy-cpp
---
pkgbase = android-studio-canary
gives = android-studio
pkgver = 2025.1.2.8
pkgdesc = Android Studio is the official integrated development environment (IDE) for Google's Android operating system, built on JetBrains' IntelliJ IDEA software and designed specifically for Android development
arch = amd64
depends = libc6-i386
depends = lib32ncurses6
depends = lib32stdc++6
depends = lib32z1
depends = libbz2-1.0:i386
replaces = android-studio-beta
replaces = android-studio
replaces = android-studio-canary
maintainer = Oren Klopfer <oren@taumoda.com>
repology = project: android-studio
source = @android-studio-canary~2025.1.2.8::https://dl.google.com/dl/android/studio/ide-zips/2025.1.2.8/android-studio-2025.1.2.8-linux.tar.gz
source = android-studio.desktop::https://raw.githubusercontent.com/pacstall/pacstall-programs/master/packages/android-studio/android-studio.desktop
sha256sums = a7bb08ada47931b16aaf6b2f0f518a47bd48d14d540cc926016e0f0078d6c83e
sha256sums = SKIP
pkgname = android-studio-canary
---
pkgbase = android-studio
pkgver = 2025.1.2.12
pkgdesc = Android Studio is the official integrated development environment (IDE) for Google's Android operating system, built on JetBrains' IntelliJ IDEA software and designed specifically for Android development
arch = amd64
depends = libc6-i386
depends = lib32ncurses6
depends = lib32stdc++6
depends = lib32z1
depends = libbz2-1.0:i386
replaces = android-studio
replaces = android-studio-beta
replaces = android-studio-canary
maintainer = Oren Klopfer <oren@taumoda.com>
maintainer = James Ed Randson <jimedrand@disroot.org>
repology = project: android-studio
repology = repo: aur
repology = visiblename: android-studio
source = @android-studio~2025.1.2.12::https://dl.google.com/dl/android/studio/ide-zips/2025.1.2.12/android-studio-2025.1.2.12-linux.tar.gz
source = android-studio.desktop::https://raw.githubusercontent.com/pacstall/pacstall-programs/master/packages/android-studio/android-studio.desktop
sha256sums = 7cb8c26c1f56c2bc7bb226104e6b56bdc7bef137584de6becba1d3b524d85806
sha256sums = SKIP
pkgname = android-studio
---
pkgbase = ani-cli-bin
gives = ani-cli
pkgver = 4.10
pkgdesc = A cli tool to browse and play anime
arch = amd64
depends = grep
depends = sed
depends = wget
depends = mpv
depends = aria2
depends = ffmpeg
depends = fzf
maintainer = Elsie19 <elsie19@pm.me>
repology = project: ani-cli
source = https://github.com/pystardust/ani-cli/releases/download/v4.10/ani-cli
source = ani-cli.1::https://github.com/pystardust/ani-cli/releases/download/v4.10/ani-cli.1
sha256sums = 38599dc5bb65a5b9f78e936ed42ffe16b62095dbc6621a5b578ed3e29aac4f3e
sha256sums = SKIP
pkgname = ani-cli-bin
---
pkgbase = anydesk-bin
gives = anydesk
pkgver = 7.1.0
pkgdesc = Platform independent remote access to personal computers and other devices running the host application - Binary version
arch = amd64
depends = libc6
depends = libgcc1
depends = libglib2.0-0
depends = libgtk2.0-0
depends = libstdc++6
depends = libx11-6
depends = libxcb-shm0
depends = libxcb1
depends = libpango1.0-dev
depends = libcairo2
depends = libxrandr2
depends = libx11-xcb1
depends = libxtst6
depends = libxfixes3
depends = libxdamage1
depends = libgtkglext1
breaks = anydesk-deb
replaces = anydesk
repology = project: anydesk
source = @anydesk-bin~7.1.0::https://download.anydesk.com/linux/anydesk-7.1.0-amd64.tar.gz
sha256sums = 0a9966659ae59cc8e69e93afcc53224863279d23579d7894b657978b45f9da5a
pkgname = anydesk-bin
---
pkgbase = anydesk-deb
gives = anydesk
pkgver = 7.0.2
pkgdesc = AnyDesk provides platform independent remote access to personal computers and other devices running the host application
arch = amd64
breaks = anydesk-bin
incompatible = debian:trixie
maintainer = Oren Klopfer <oren@taumoda.com>
repology = project: anydesk
source = http://deb.anydesk.com/pool/main/a/anydesk/anydesk_7.0.2_amd64.deb
sha256sums = 74170b9f16538576b9f8390c5ab3e5810ef2167ba7c72ed1b63f8ed32c8ebdb7
pkgname = anydesk-deb
---
pkgbase = anytype-deb
gives = anytype
pkgver = 0.47.6
pkgdesc = Operating environment for the new internet. Anytype is a next generation software that breaks down barriers between applications, gives back privacy and data ownership to users.
url = https://anytype.io/
arch = amd64
maintainer = Anifyuli <anifyuliansyah@gmail.com>
repology = project: anytype
source = https://github.com/anyproto/anytype-ts/releases/download/v0.47.6/anytype_0.47.6_amd64.deb
sha256sums = 460809b46793213af258ed42aee1ed46470725bc110631d699f653a74e0d19d9
pkgname = anytype-deb
---
pkgbase = appimagelauncher-deb
gives = appimagelauncher
pkgver = 2.2.0
pkgdesc = Helper application for Linux distributions serving as a kind of entry point for running and integrating AppImages.
arch = amd64
maintainer = Zahrun <Zahrun@github.com>
repology = project: appimagelauncher
source = https://github.com/TheAssassin/AppImageLauncher/releases/download/v2.2.0/appimagelauncher_2.2.0-travis995.0f91801.bionic_amd64.deb
sha256sums = f4b9db56a6ba7dd091074b14157612986a9f6a0cb3fcd230abfc8f4555c70a7f
pkgname = appimagelauncher-deb
---
pkgbase = appmenu-registrar-backport
gives = appmenu-registrar
pkgver = 24.02
pkgrel = 2
pkgdesc = Small utility to hold DBusMenu menus
url = https://gitlab.com/vala-panel-project/vala-panel-appmenu
arch = amd64
arch = arm64
depends = libglib2.0-0
makedepends = meson
makedepends = libglib2.0-0
makedepends = libglib2.0-dev
compatible = debian:trixie
compatible = debian:sid
compatible = ubuntu:oracular
compatible = ubuntu:devel
compatible = ubuntu:plucky
compatible = ubuntu:questing
license = LGPL-3.0-or-later
maintainer = Oren Klopfer <oren@taumoda.com>
source = https://gitlab.com/vala-panel-project/vala-panel-appmenu/-/archive/24.02/vala-panel-appmenu-24.02.tar.gz
pkgname = appmenu-registrar-backport
---
pkgbase = apptainer-deb
gives = apptainer
pkgver = 1.4.1
pkgdesc = container platform focused on supporting "Mobility of Compute" formerly known as Singularity
arch = amd64
repology = project: apptainer
source = https://github.com/apptainer/apptainer/releases/download/v1.4.1/apptainer_1.4.1_amd64.deb
sha256sums = 9a0663f6e680d270dd3675f94cabf35dc324bb8673f5c6b645005e5aa1bd6d88
pkgname = apptainer-deb
---
pkgbase = apptainer-suid-deb
gives = apptainer-suid
pkgver = 1.4.1
pkgdesc = setuid-root portion of apptainer
arch = amd64
pacdeps = apptainer-deb
repology = project: apptainer
source = https://github.com/apptainer/apptainer/releases/download/v1.4.1/apptainer-suid_1.4.1_amd64.deb
sha256sums = 0739b1f13948355a4369b5cd46dc2dc78f5d8ae4113b9b9ded1a5f6a4336c38a
pkgname = apptainer-suid-deb
---
pkgbase = apx-git
gives = apx
pkgver = 2.4.3
pkgdesc = Package manager meant to be simple to use, but also powerful with support to installing packages from multiple sources without altering the root filesystem
arch = any
makedepends = golang-1.22-go
pacdeps = distrobox
breaks = apx
incompatible = *:bullseye
incompatible = *:bookworm
maintainer = Zahrun <Zahrun@github.com>
source = https://github.com/Vanilla-OS/apx.git
pkgname = apx-git
---
pkgbase = aqua-ide-bin
gives = aqua
pkgver = 2024.3.1
pkgdesc = The IDE for test automation
arch = amd64
arch = arm64
maintainer = James Ed Randson <jimedrand@disroot.org>
repology = project: aqua
source_amd64 = https://download-cdn.jetbrains.com/aqua/aqua-2024.3.1.tar.gz
sha256sums_amd64 = e304d8f900881d18865010819dc035d59be00b1364baa2b98ef47d923907ce57
source_arm64 = https://download-cdn.jetbrains.com/aqua/aqua-2024.3.1-aarch64.tar.gz
sha256sums_arm64 = 4895ad44a456f56121cc4e78be45b6a4ccae8080ab7251cd434304465d01f7c4
pkgname = aqua-ide-bin
---
pkgbase = ardour-git
pkgver = 7.5
pkgdesc = Professional-grade digital audio workstation
arch = any
depends = alsa-utils
depends = libqm-dsp0
depends = libcairo2
depends = libgcc-s1
depends = libglib2.0-0
depends = libglibmm-2.4-1v5
depends = libgtkmm-2.4-1v5
depends = libx11-6
depends = libxml2
depends = libsoundtouch1
depends = libtag1v5
depends = libflac8
depends = libasound2
depends = libatkmm-1.6-1v5
depends = libaubio5
depends = libarchive13
depends = libcairomm-1.0-1v5
depends = libcurl4
depends = libdbus-1-3
depends = libfftw3-3
depends = fontconfig
depends = libfreetype6
depends = libgdk-pixbuf-2.0-0
depends = libgtk2.0-0
depends = libgio-cil
depends = libglib2.0-cil
depends = libglib2.0-0
depends = libcairo-gobject2
depends = jackd2
depends = liblo7
depends = liblilv-0-0
depends = libltc11
depends = libogg0
depends = libpango-1.0-0
depends = libpangocairo-1.0-0
depends = libpangoft2-1.0-0
depends = libpangomm-1.4-1v5
depends = libpulse0
depends = libreadline8
depends = librubberband2
depends = libsamplerate0
depends = libserd-0-0
depends = libsndfile1
depends = libsord-0-0
depends = libsratom-0-0
depends = libsuil-0-0
depends = libusb-1.0-0
depends = libvamp-hostsdk3v5
depends = libvamp-sdk2v5
depends = libwebsockets-dev
depends = fluidsynth
makedepends = python3
makedepends = python-is-python3
makedepends = libgio2.0-cil-dev
makedepends = python3
makedepends = libqm-dsp-dev
makedepends = libcairo2-dev
makedepends = libglib2.0-dev
makedepends = libglibmm-2.4-dev
makedepends = libgtkmm-2.4-dev
makedepends = libx11-dev
makedepends = libxml2-dev
makedepends = libsoundtouch-dev
makedepends = libtag1-dev
makedepends = libatkmm-1.6-dev
makedepends = libaubio-dev
makedepends = libboost-all-dev
makedepends = libcairomm-1.0-dev
makedepends = libcppunit-dev
makedepends = libdbus-1-dev
makedepends = doxygen
makedepends = libfftw3-dev
makedepends = libflac-dev
makedepends = libfontconfig-dev
makedepends = libfreetype6-dev
makedepends = libgdk-pixbuf2.0-0
makedepends = graphviz
makedepends = libgtk2.0-dev
makedepends = libhidapi-dev
makedepends = itstool
makedepends = libjack-jackd2-dev
makedepends = libarchive-dev
makedepends = liblo-dev
makedepends = libltc-dev
makedepends = libogg-dev
makedepends = libpulse-dev
makedepends = libsamplerate0-dev
makedepends = libsndfile1-dev
makedepends = libusb-1.0-0-dev
makedepends = libwebsockets-dev
makedepends = liblilv-dev
makedepends = lv2-dev
makedepends = libpango1.0-dev
makedepends = libpangomm-1.4-dev
makedepends = libreadline-dev
makedepends = librubberband-dev
makedepends = libserd-dev
makedepends = libsord-dev
makedepends = libsratom-dev
makedepends = libsuil-dev
makedepends = vamp-plugin-sdk
makedepends = libfluidsynth-dev
makedepends = liblrdf0-dev
makedepends = libraptor2-dev
makedepends = libcurl4-gnutls-dev
makedepends = libasound2-dev
optdepends = xjadeo: video monitoring
optdepends = harvid: video timeline
optdepends = linuxaudio-new-session-manager: for session management
breaks = ardour
provides = ladspa-host
provides = lv2-host
provides = vst-host
provides = vst3-host
provides = ardour
provides = ardour-data
maintainer = echometerain <echometer@disroot.org>
source = https://github.com/Ardour/ardour.git
pkgname = ardour-git
---
pkgbase = arduino-cli-bin
gives = arduino-cli
pkgver = 1.2.2
pkgdesc = An all-in-one solution that provides Boards/Library Managers, sketch builder, board detection, uploader, and many other tools needed to use any Arduino compatible board and platform from command line or machine interfaces
arch = amd64
breaks = arduino-cli
breaks = arduino-cli-deb
breaks = arduino-cli-app
breaks = arduino-cli-git
maintainer = DismissedGuy <me@mikealmel.ooo>
repology = project: arduino-cli
source = @arduino-cli-bin~1.2.2::https://github.com/arduino/arduino-cli/releases/download/v1.2.2/arduino-cli_1.2.2_Linux_64bit.tar.gz
sha256sums = a5ad085d1b02fd4010df18b1bbf20453276efe6c6e2ac323baa0cac4e96a85b4
pkgname = arduino-cli-bin
---
pkgbase = arduino-ide-bin
gives = arduino-ide
pkgver = 2.3.6
pkgdesc = An open-source IDE that makes it easy to write code and upload it to Arduino boards
arch = amd64
breaks = arduino-ide
breaks = arduino-ide-deb
breaks = arduino-ide-app
breaks = arduino-ide-git
maintainer = DismissedGuy <me@mikealmel.ooo>
repology = project: arduino
source = @arduino-ide-bin~2.3.6::https://downloads.arduino.cc/arduino-ide/arduino-ide_2.3.6_Linux_64bit.zip
source = arduino.svg::https://www.arduino.cc/wiki/370832ed4114dd35d498f2f449b4781e/arduino.svg
source = arduino-ide.desktop::https://raw.githubusercontent.com/pacstall/pacstall-programs/master/packages/arduino-ide-bin/arduino-ide.desktop
sha256sums = 33bf2cb868abf92b3d160f7433dcd6348cec1c9e633b5c9e1c761f630f87b82b
sha256sums = SKIP
sha256sums = SKIP
pkgname = arduino-ide-bin
---
pkgbase = asdf-vm
pkgver = 0.18.0
pkgdesc = Extendable version manager with support for Ruby, Node.js, Elixir, Erlang & more
url = https://asdf-vm.com
arch = i386
arch = amd64
arch = arm64
depends = curl
depends = git
optdepends = build-essential: Array of tools to build software
optdepends = bash-completion: For completions to work in Bash
optdepends = libncurses5-dev: Text-based UI library for terminal applications
optdepends = libncurses-dev: Text-based UI library for terminal applications
optdepends = unzip: Needed by some plugins, like Elixir
license = MIT
repology = project: asdf-vm
source_i386 = asdf-vm-0.18.0-i386.tar.gz::https://github.com/asdf-vm/asdf/releases/download/v0.18.0/asdf-v0.18.0-linux-386.tar.gz
sha256sums_i386 = ebb2530d98806a0a4746f2b1f57910a962133e55c2c60d81957887166da947f7
source_amd64 = asdf-vm-0.18.0-amd64.tar.gz::https://github.com/asdf-vm/asdf/releases/download/v0.18.0/asdf-v0.18.0-linux-amd64.tar.gz
sha256sums_amd64 = 4d3007070166cb0a652af26c3f0462b021e04cb26c4ab13894d13689da89f5b8
source_arm64 = asdf-vm-0.18.0-arm64.tar.gz::https://github.com/asdf-vm/asdf/releases/download/v0.18.0/asdf-v0.18.0-linux-arm64.tar.gz
sha256sums_arm64 = 1749b89039e4af51b549aa0919812fd68722c1a26a90eaf84db0b46a39f557a9
pkgname = asdf-vm
---
pkgbase = aseprite
pkgver = 1.3.14.4
pkgdesc = Animated sprite editor & pixel art tool
url = https://www.aseprite.org/
arch = amd64
makedepends = clang
makedepends = cmake
makedepends = libc++-dev
makedepends = libc++abi-dev
makedepends = libfontconfig1-dev
makedepends = libgl1-mesa-dev
makedepends = libx11-dev
makedepends = libxcursor-dev
makedepends = libxi-dev
makedepends = ninja-build
noextract = aseprite-1.3.14.4.zip
noextract = skia-m124-08a5439a6b.zip
license = custom:EULA
repology = project: aseprite
source = aseprite-1.3.14.4.zip::https://github.com/aseprite/aseprite/releases/download/v1.3.14.2/Aseprite-v1.3.14.4-Source.zip
source = skia-m124-08a5439a6b.zip::https://github.com/aseprite/skia/releases/download/m124-08a5439a6b/Skia-Linux-Release-x64.zip
source = https://github.com/aseprite/strings.git
sha256sums = d4e59025ad673c2da8c037ca01ce7d71181cae2e0d9b6cbd081eaf2dba120fda
sha256sums = a327e89b244f24cecaa34eb37544bae00d447b96c583d26ed29d6a3ad2e8a8b8
sha256sums = SKIP
pkgname = aseprite
---
pkgbase = audiorelay-bin
gives = audiorelay
pkgver = 0.27.5
pkgdesc = Turn your phone into a microphone or speakers for PC
url = https://audiorelay.net
arch = amd64
conflicts = audiorelay-deb
maintainer = villamorrd <villamorrd@students.nu-moa.edu.ph>
repology = project: audiorelay
source = https://dl.audiorelay.net/setups/linux/audiorelay-0.27.5.tar.gz
sha256sums = c4854139a4bd21e7bf7881a7b6e21ebc4cfe823286783d4fb9ad4bf4edf8e8c7
pkgname = audiorelay-bin
---
pkgbase = audiorelay-deb
gives = audiorelay
pkgver = 0.27.5
pkgdesc = Turn your phone into a microphone or speakers for PC
url = https://audiorelay.net/
arch = amd64
compatible = ubuntu:focal
compatible = ubuntu:jammy
maintainer = villamorrd <villamorrd@students.nu-moa.edu.ph>
repology = project: audiorelay
source = https://dl.audiorelay.net/setups/linux/audiorelay-0.27.5.deb
sha256sums = b4b00d3ba21718df61021a67cb7b3eaab5dfaaa779bef7e3247054a079cd3dee
pkgname = audiorelay-deb
---
pkgbase = awesome-git
gives = awesome
pkgver = 4.3
pkgdesc = awesome window manager
arch = any
depends = libx11-6
depends = libxcb-cursor0
depends = libxcb-icccm4
depends = libxcb-keysyms1
depends = libxcb-randr0
depends = libxcb-shape0
depends = libxcb-util1
depends = libxcb-xinerama0
depends = libxcb-xkb1
depends = libxcb-xrm0
depends = libxcb-xtest0
depends = libxcb1
depends = libxdg-basedir1
depends = libxkbcommon-x11-0
depends = libxkbcommon0
depends = libstartup-notification0
depends = libglib2.0-0
depends = libgdk-pixbuf2.0-0
depends = libgdk-pixbuf-2.0-0
depends = libdbus-1-3
depends = libcairo2
depends = libcairo-gobject2
depends = gir1.2-glib-2.0
depends = gir1.2-gdkpixbuf-2.0
depends = gir1.2-freedesktop
depends = lua5.3
depends = liblua5.3-0
depends = dbus-x11
depends = libnotify-bin
depends = wmctrl
depends = x11-apps
depends = xcb-proto
depends = xdotool
depends = xorg
depends = lua-lgi
makedepends = asciidoctor
makedepends = gir1.2-pango-1.0
makedepends = gir1.2-gtk-3.0
makedepends = git
makedepends = gzip
makedepends = lua-ldoc
makedepends = imagemagick
makedepends = asciidoc
makedepends = xmlto
makedepends = cmake
makedepends = lua-busted
makedepends = lua-check
makedepends = liblua5.3-dev
makedepends = libxcb-cursor-dev
makedepends = libxcb-util0-dev
makedepends = libxcb-keysyms1-dev
makedepends = libxcb-icccm4-dev
makedepends = libxcb-xkb-dev
makedepends = libxkbcommon-dev
makedepends = libstartup-notification0-dev
makedepends = libxdg-basedir-dev
makedepends = libxcb-xrm-dev
makedepends = libxkbcommon-x11-dev
makedepends = lua-lgi
makedepends = libglib2.0-dev
makedepends = libgdk-pixbuf2.0-dev
makedepends = libxcb-xinerama0-dev
makedepends = gettext
makedepends = libdbus-1-dev
makedepends = libgirepository1.0-dev
makedepends = libpango1.0-dev
makedepends = libx11-xcb-dev
makedepends = libxcb-randr0-dev
makedepends = libxcb-shape0-dev
makedepends = libxcb-xfixes0-dev
makedepends = xutils-dev
makedepends = libluajit-5.1-dev
makedepends = libcairo2-dev
makedepends = lua-discount
makedepends = x11proto-dev
makedepends = libxcb-xtest0-dev
makedepends = libmarkdown2
makedepends = libyaml-dev
makedepends = lua-any
makedepends = lua-cliargs
makedepends = lua-dkjson
makedepends = lua-filesystem
makedepends = lua-inifile
makedepends = lua-luassert
makedepends = lua-mediator
makedepends = lua-penlight
makedepends = lua-say
makedepends = lua-system
makedepends = lua-term
makedepends = lua5.2
makedepends = libc6
makedepends = luajit
optdepends = rlwrap: readline support for awesome-client
optdepends = dex: autostart your desktop files
optdepends = librsvg2-dev: for displaying SVG files without scaling artifacts
optdepends = feh: for icon generation etc
optdepends = awesome-extra: additional modules for awesome
optdepends = awesome-doc: documentation for awesome
breaks = awesome
breaks = awesome-bin
replaces = awesome
replaces = awesome-bin
maintainer = wizard-28 <wiz28@pm.me>
source = https://github.com/awesomeWM/awesome.git
pkgname = awesome-git
---
pkgbase = aws-cli-v2-bin
gives = aws-cli-v2
pkgver = 2.27.40
pkgdesc = Universal Command Line Interface for Amazon Web Services v2
arch = amd64
depends = groff
depends = less
makedepends = unzip
replaces = awscli
maintainer = Oren Klopfer <oren@taumoda.com>
repology = project: awscli
source = @aws-cli-v2-bin~2.27.40::https://awscli.amazonaws.com/awscli-exe-linux-x86_64-2.27.40.zip
sha256sums = 61aae8013cb01740d36e4aadc7b0e1fc37894c0d821a5b52ec516f473df974ea
pkgname = aws-cli-v2-bin
---
pkgbase = balena-etcher-deb
gives = balena-etcher
pkgver = 2.1.4
pkgdesc = Flash OS images to SD cards & USB drives, safely and easily
arch = amd64
maintainer = cat-master21 <96554164+cat-master21@users.noreply.github.com>
repology = project: etcher
source = https://github.com/balena-io/etcher/releases/download/v2.1.4/balena-etcher_2.1.4_amd64.deb
sha256sums = c635213bb0724eb789bc036819cd1adb7d0693fd3bd26622811a8f7bd25e9252
pkgname = balena-etcher-deb
---
pkgbase = bat-deb
gives = bat
pkgver = 0.25.0
pkgdesc = A cat(1) clone with wings
arch = amd64
replaces = bat
maintainer = Elsie19 <elsie19@pm.me>
repology = project: bat-cat
source = https://github.com/sharkdp/bat/releases/download/v0.25.0/bat_0.25.0_amd64.deb
sha256sums = 7e6afdffaea04b394f466f6f719a1e0565572a4b59d6cb9969843355b684e2dc
pkgname = bat-deb
---
pkgbase = bat
pkgver = 0.24.0
pkgdesc = A cat(1) clone with wings
arch = any
depends = libonig5
makedepends = cargo
makedepends = libonig-dev
makedepends = pkg-config
replaces = bat
source = @bat~0.24.0::https://github.com/sharkdp/bat/archive/refs/tags/v0.24.0.tar.gz
sha256sums = 907554a9eff239f256ee8fe05a922aad84febe4fe10a499def72a4557e9eedfb
pkgname = bat
---
pkgbase = batsignal
pkgver = 1.8.0
pkgdesc = A lightweight battery monitor daemon
arch = any
makedepends = pkg-config
makedepends = libnotify4
makedepends = libnotify-dev
breaks = batsignal
breaks = batsignal-git
maintainer = Harshwardhan Mehrotra <harshwardhanmehrotra@gmail.com>
repology = project: batsignal
source = https://github.com/electrickite/batsignal/archive/refs/tags/1.8.0.tar.gz
sha256sums = c8c2a048f4aa105aae389d9d765b76057d4998dbfc29a7dfeaf66351eaa7cba1
pkgname = batsignal
---
pkgbase = bazecor-app
gives = bazecor
pkgver = 1.7.0
pkgdesc = Bazecor is the graphical configurator for the Dygma Raise
arch = amd64
depends = usbutils
depends = udev
breaks = bazecor
breaks = bazecor-bin
breaks = bazecor-deb
breaks = bazecor-git
maintainer = Elsie19 <elsie19@pm.me>
repology = project: bazecor
source = https://github.com/Dygmalab/Bazecor/releases/download/v1.7.0/Bazecor-1.7.0-x64.AppImage
source = https://raw.githubusercontent.com/Elsie19/images/master/bazecor.png
sha256sums = 8bee840604fc16fdc6376ab09ebf901fd99c0d3a1e42f8ade76a91b77d18f6c3
sha256sums = SKIP
pkgname = bazecor-app
---
pkgbase = bemenu-git
gives = bemenu
pkgver = 0.6.15
pkgdesc = Dynamic menu library and client program inspired by dmenu (git release)
arch = any
makedepends = scdoc
makedepends = wayland-protocols
makedepends = libcairo-dev
makedepends = libpango1.0-dev
makedepends = libxkbcommon-dev
makedepends = libwayland-dev
makedepends = libxinerama-dev
makedepends = libncurses5-dev
breaks = bemenu-bin
breaks = bemenu
maintainer = wizard-28 <wiz28@pm.me>
source = https://github.com/Cloudef/bemenu.git
pkgname = bemenu-git
---
pkgbase = bes2600-firmware-git
gives = bes2600-firmware
pkgver = 0.0.1
pkgrel = 2
pkgdesc = firmware files for BES2600 WLAN/BT combo chip and PineTab2 systemd files for controlling
arch = all
maintainer = Oren Klopfer <oren@taumoda.com>
source = https://gitlab.com/pine64-org/bes2600-firmware.git
pkgname = bes2600-firmware-git
---
pkgbase = betterbird-bin
gives = betterbird
pkgver = 140.3.0esr
pkgdesc = Fine-tuned version of Mozilla Thunderbird, Thunderbird on steroids, if you will
url = https://www.betterbird.eu/index.html
arch = x86_64
depends = libdbus-glib-1-2
depends = hunspell
maintainer = tranquil <tranquiltr0@proton.me>
repology = project: betterbird
source = https://www.betterbird.eu/downloads/LinuxArchive/betterbird-140.3.0esr-bb11.en-US.linux-x86_64.tar.xz
source = eu.betterbird.Betterbird.desktop
sha256sums = 4341c8602c51f57a8aa5112e3a7d0fa954672503940561403c34ff8c05eacda4
sha256sums = bce809385dc48951ca6309776ed8fe5213ebbce301a790349172a799d8987151
pkgname = betterbird-bin
---
pkgbase = bitwarden-cli-bin
gives = bitwarden-cli
pkgver = 2025.9.0
pkgdesc = Bitwarden's command-line interface - Binary
arch = amd64
breaks = bitwarden-cli-git
replaces = bitwarden-cli
maintainer = Elsie19 <elsie19@pm.me>
repology = project: bitwarden-cli
source = https://github.com/bitwarden/clients/releases/download/cli-v2025.9.0/bw-linux-2025.9.0.zip
sha256sums = 91083a77b9e6781ef4088ef94c22651c3368d3ccff9fe3938f6f0316eae8d417
pkgname = bitwarden-cli-bin
---
pkgbase = bitwarden-deb
gives = bitwarden
pkgver = 2025.7.0
pkgdesc = Open Source Password Manager
arch = amd64
breaks = bitwarden-app
breaks = bitwarden-git
replaces = bitwarden
maintainer = Oren Klopfer <oren@taumoda.com>
repology = project: bitwarden
source = https://github.com/bitwarden/clients/releases/download/desktop-v2025.7.0/Bitwarden-2025.7.0-amd64.deb
sha256sums = f8bd7a3054303e7c60074ed15d593d78b22f177dbd0e7f98e820afe26b5fe4a8
pkgname = bitwarden-deb
---
pkgbase = bitwig-studio-3-deb
gives = bitwig-studio
pkgver = 3.3.11
pkgdesc = Digital audio workstation for music production, remixing and live performance
arch = amd64
maintainer = Zahrun <Zahrun@github.com>
source = https://downloads-eu.bitwig.com/stable/3.3.11/bitwig-studio-3.3.11.deb
sha256sums = 705f2054f8ccd0a51c28e5b4f6e15c729e3f9736d49997019153b0aff03ff18c
pkgname = bitwig-studio-3-deb
---
pkgbase = bitwig-studio-4-deb
gives = bitwig-studio
pkgver = 4.4.10
pkgdesc = Digital audio workstation for music production, remixing and live performance
arch = amd64
maintainer = Zahrun <Zahrun@github.com>
source = https://downloads.bitwig.com/stable/4.4.10/bitwig-studio-4.4.10.deb
sha256sums = 82d4359a15e4d00a8689d664e530b3491e7ca43d4926810b3019842edab26f85
pkgname = bitwig-studio-4-deb
---
pkgbase = bitwig-studio-deb
gives = bitwig-studio
pkgver = 5.3.9
pkgdesc = Digital audio workstation for music production, remixing and live performance
arch = amd64
maintainer = Zahrun <Zahrun@github.com>
repology = project: bitwig-studio
source = https://www.bitwig.com/dl/Bitwig%20Studio/5.3.9/installer_linux/bitwig-studio-5.3.9.deb
sha256sums = 14d0090ba3ce509a72758cb860aac8ea94f379db1ad377724f2d8b193c5a11be
pkgname = bitwig-studio-deb
---
pkgbase = ble.sh-git
gives = ble.sh
pkgver = 0.4.0-devel3
pkgdesc = Replacement for Bash's line editor with enhanced features
url = https://github.com/akinomyoga/ble.sh
arch = all
depends = bash
makedepends = make
makedepends = gawk
optdepends = mawk: for faster processing
breaks = ble.sh
license = BSD-3-Clause
maintainer = Erik Hedlund <erikcghedlund@outlook.com>
repology = project: blesh
source = https://github.com/akinomyoga/ble.sh.git
pkgname = ble.sh-git
---
pkgbase = blender-bin
gives = blender
pkgver = 4.5.3
pkgdesc = A fully integrated 3D graphics creation suite
url = https://www.blender.org/
arch = amd64
maintainer = Elsie19 <elsie19@pm.me>
repology = project: blender
source = https://mirrors.ocf.berkeley.edu/blender/release/Blender4.5/blender-4.5.3-linux-x64.tar.xz
sha256sums = 975c58fcb244273838534bba771e64ad87739216b0f9b39a888531a49a72d845
pkgname = blender-bin
---
pkgbase = bluegriffon-deb
gives = bluegriffon
pkgver = 3.1
pkgdesc = The next-gen Web and EPUB Editor based on the rendering engine of Firefox
arch = amd64
breaks = bluegriffon