-
-
Notifications
You must be signed in to change notification settings - Fork 135
/
srclist
13041 lines (12391 loc) · 429 KB
/
srclist
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.28.0
pkgdesc = 1Password CLI
arch = amd64
maintainer = Oren Klopfer <[email protected]>
repology = project: 1password-cli
source = https://cache.agilebits.com/dist/1P/op2/pkg/v2.28.0/op_linux_amd64_v2.28.0.zip
sha256sums = a0732965d86c4429b508d1f00531359936a50d62f78b01fc2df964d9f5f47982
pkgname = 1password-cli-bin
---
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 <[email protected]>
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 <[email protected]>
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 = 5.3
pkgdesc = An unofficial GTK3 port of libadwaita.
arch = any
breaks = adw-gtk3
breaks = adw-gtk3-git
maintainer = Herisson <[email protected]>
repology = project: adw-gtk3
repology = repo: aur
source = https://github.com/lassekongo83/adw-gtk3/releases/download/v5.3/adw-gtk3v5.3.tar.xz
sha256sums = 2e6e87935bef30936e40d07c7af4fd20754e77917be224f61c4346867196bef0
pkgname = adw-gtk3
---
pkgbase = alacritty
pkgver = 0.13.2
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 <[email protected]>
repology = project: alacritty
source = https://github.com/alacritty/alacritty/archive/refs/tags/v0.13.2.tar.gz
sha256sums = e9a54aabc92bbdc25ab1659c2e5a1e9b76f27d101342c8219cc98a730fd46d90
pkgname = alacritty
---
pkgbase = amf-headers
gives = amf-headers
pkgver = 1.4.34
pkgdesc = Header files for AMD Advanced Media Framework
url = https://github.com/GPUOpen-LibrariesAndSDKs/AMF/
arch = all
makedepends = git
license = MIT
maintainer = Luis Garcia <[email protected]>
source = https://github.com/GPUOpen-LibrariesAndSDKs/AMF/releases/download/v1.4.34/AMF-headers.tar.gz
sha256sums = 5393759308f6d7bc9eb1ed8013c954e03aadb85f0ed6e96f969a5df447b0f79c
pkgname = amf-headers
---
pkgbase = amfora-bin
gives = amfora
pkgver = 1.10.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 <[email protected]>
repology = project: amfora
source = https://github.com/makew0rld/amfora/releases/download/v1.10.0/amfora_1.10.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 = b2e9e50954345b38c4481e200944950675d30cdd4e1d7eef50d5b3a528cc1a0a
sha256sums = 3d029d05cff8c42e82685ce7a61fcaa2118e4cbb6a547816a7d5150868a11092
sha256sums = 812e1faad6f6d4817eac60d36813472afebe2980cd2e661151a3d98669274207
pkgname = amfora-bin
---
pkgbase = an-anime-game-launcher-bin
gives = an-anime-game-launcher
pkgver = 3.13.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
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 <[email protected]>
repology = project: an-anime-game-launcher
source = https://github.com/an-anime-team/an-anime-game-launcher/releases/download/3.13.0/anime-game-launcher
source = icon.png::https://raw.githubusercontent.com/an-anime-team/an-anime-game-launcher/main/assets/images/icon.png
sha256sums = 5078893120d68988f475fdd35fbf1178c02eb42fd6f5850f2f776a9592b516ee
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 = 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 = 2023.1.1.28
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 <[email protected]>
repology = project: android-studio
source = https://dl.google.com/dl/android/studio/ide-zips/2023.1.1.28/android-studio-2023.1.1.28-linux.tar.gz
source = android-studio.desktop::https://raw.githubusercontent.com/pacstall/pacstall-programs/master/packages/android-studio/android-studio.desktop
sha256sums = 139d0dbb4909353b68fbf55c09b6d31a34512044a9d4f02ce0f1a9accca128f9
sha256sums = SKIP
pkgname = android-studio-canary
---
pkgbase = android-studio
pkgver = 2024.1.1.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 <[email protected]>
repology = project: android-studio
repology = repo: aur
repology = visiblename: android-studio
source = https://dl.google.com/dl/android/studio/ide-zips/2024.1.1.12/android-studio-2024.1.1.12-linux.tar.gz
source = android-studio.desktop::https://raw.githubusercontent.com/pacstall/pacstall-programs/master/packages/android-studio/android-studio.desktop
sha256sums = 42f8bf31ce0d124ddd11195f662a30064d8f9aab206e5e66839e876a6bc6eda2
sha256sums = SKIP
pkgname = android-studio
---
pkgbase = ani-cli-bin
gives = ani-cli
pkgver = 4.8
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 <[email protected]>
repology = project: ani-cli
source = https://github.com/pystardust/ani-cli/releases/download/v4.8/ani-cli
source = ani-cli.1::https://github.com/pystardust/ani-cli/releases/download/v4.8/ani-cli.1
sha256sums = 4a21690493b4aee4165f1881b19d9d696c9f56c5687940e587c542c6caa7c6fe
sha256sums = SKIP
pkgname = ani-cli-bin
---
pkgbase = anydesk-bin
gives = anydesk
pkgver = 6.3.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 = https://download.anydesk.com/linux/anydesk-6.3.0-amd64.tar.gz
sha256sums = b1e3337d35ce19af93963829988b2014e8acfbbf6bd1b5adfb8bc7dcd6fee452
pkgname = anydesk-bin
---
pkgbase = anydesk-deb
gives = anydesk
pkgver = 6.3.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 <[email protected]>
repology = project: anydesk
source = http://deb.anydesk.com/pool/main/a/anydesk/anydesk_6.3.2_amd64.deb
sha256sums = 2bc739676672b531e91d50f302c6ea8ad6b1612dc499d1d2f83b21a4c852658d
pkgname = anydesk-deb
---
pkgbase = anytype-deb
gives = anytype
pkgver = 0.40.9
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 <[email protected]>
repology = project: anytype
source = https://github.com/anyproto/anytype-ts/releases/download/v0.40.9/anytype_0.40.9_amd64.deb
sha256sums = a0360c31b5b0edde9dfb04c9602da8a66eea43d1afc4f508314cc65d65c712a2
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 <[email protected]>
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
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
license = LGPL-3.0-or-later
maintainer = Oren Klopfer <[email protected]>
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.3.3
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.3.3/apptainer_1.3.3_amd64.deb
sha256sums = 1a2e96cae9eaf54b069bd0107da590e60452e6d58430376c91058ad751497b59
pkgname = apptainer-deb
---
pkgbase = apptainer-suid-deb
gives = apptainer-suid
pkgver = 1.3.3
pkgdesc = setuid-root portion of apptainer
arch = amd64
pacdeps = apptainer-deb
repology = project: apptainer
source = https://github.com/apptainer/apptainer/releases/download/v1.3.3/apptainer-suid_1.3.3_amd64.deb
sha256sums = 4a1ca609ffd0fbc532ec3af7427eca054a47e14a82e004c918e16e063cd35239
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 <[email protected]>
source = https://github.com/Vanilla-OS/apx.git
pkgname = apx-git
---
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 <[email protected]>
source = https://github.com/Ardour/ardour.git
pkgname = ardour-git
---
pkgbase = arduino-cli-bin
gives = arduino-cli
pkgver = 0.35.3
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 <[email protected]>
repology = project: arduino-cli
source = https://github.com/arduino/arduino-cli/releases/download/v0.35.3/arduino-cli_0.35.3_Linux_64bit.tar.gz
sha256sums = acf3a3e03f0478a1cade44d23d4bc2f979c9b61b64e13bc66e26220b7b9fbd23
pkgname = arduino-cli-bin
---
pkgbase = arduino-ide-bin
gives = arduino-ide
pkgver = 2.3.2
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 <[email protected]>
repology = project: arduino
source = https://downloads.arduino.cc/arduino-ide/arduino-ide_2.3.2_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 = 1a23b911043a247116ace846f03a0265c719dcd49cf9a8af09334db4d3916e88
sha256sums = SKIP
sha256sums = SKIP
pkgname = arduino-ide-bin
---
pkgbase = armcord-deb
gives = armcord
pkgver = 3.2.8
pkgdesc = Custom client designed to enhance your Discord experience while keeping everything lightweight
arch = arm64
arch = amd64
depends = libgtk-3-0
depends = libnotify4
depends = libnss3
depends = libxss1
depends = libxtst6
depends = xdg-utils
depends = libatspi2.0-0
depends = libuuid1
depends = libsecret-1-0
maintainer = Oren Klopfer <[email protected]>
repology = project: armcord
source_arm64 = https://github.com/ArmCord/ArmCord/releases/download/v3.2.8/ArmCord_3.2.8_arm64.deb
sha256sums_arm64 = 8bfb87c0a1e7b96964f6fed00717afb8b97b6e2b10affb49c2fb485fc98eaf8b
source_amd64 = https://github.com/ArmCord/ArmCord/releases/download/v3.2.8/ArmCord_3.2.8_amd64.deb
sha256sums_amd64 = b4a0f0def8127e162d52023a7c0ee6b81e125844b008c154863c81690da55399
pkgname = armcord-deb
---
pkgbase = aseprite
pkgver = 1.3.9
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.9.zip
noextract = skia-m102-861e4743af.zip
license = custom:EULA
maintainer = vigress8 <[email protected]>
repology = project: aseprite
source = aseprite-1.3.9.zip::https://github.com/aseprite/aseprite/releases/download/v1.3.9/Aseprite-v1.3.9-Source.zip
source = skia-m102-861e4743af.zip::https://github.com/aseprite/skia/releases/download/m102-861e4743af/Skia-Linux-Release-x64-libc++.zip
source = https://github.com/aseprite/strings.git
sha256sums = 672c8ddb12d4c180f6c27b33ec4b0faefe5df321c7d40c03cb62ad3182e584ff
sha256sums = 66293c15aa773a96121afb01f09109d3e5d455a6fd51944e0bb8bdc0829913ea
sha256sums = SKIP
pkgname = aseprite
---
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 <[email protected]>
source = https://github.com/awesomeWM/awesome.git
pkgname = awesome-git
---
pkgbase = aws-cli-v2-bin
gives = aws-cli-v2
pkgver = 2.15.44
pkgdesc = Universal Command Line Interface for Amazon Web Services v2
arch = amd64
depends = groff
depends = less
makedepends = unzip
replaces = awscli
maintainer = Oren Klopfer <[email protected]>
repology = project: awscli
source = https://awscli.amazonaws.com/awscli-exe-linux-x86_64-2.15.44.zip
sha256sums = a825bec454b46cb1203a98092a95504c94872973e132a1c22befd8c0b11c859f
pkgname = aws-cli-v2-bin
---
pkgbase = balena-etcher-deb
gives = balena-etcher
pkgver = 1.18.12
pkgdesc = Flash OS images to SD cards & USB drives, safely and easily
arch = amd64
maintainer = cat-master21 <[email protected]>
repology = project: balena-etcher
source = https://github.com/balena-io/etcher/releases/download/v1.18.12/balena-etcher_1.18.12_amd64.deb
sha256sums = 51cb35f3bc53a5b449ecfdf684297c7073f13b71c2b38e199de01ab34e371579
pkgname = balena-etcher-deb
---
pkgbase = bat-deb
gives = bat
pkgver = 0.24.0
pkgdesc = A cat(1) clone with wings
arch = amd64
replaces = bat
maintainer = Elsie19 <[email protected]>
repology = project: bat-cat
source = https://github.com/sharkdp/bat/releases/download/v0.24.0/bat_0.24.0_amd64.deb
sha256sums = fa9353fa0c6e1e67b87757c4bd6bf515f85d3fc16d41b12cc26f7a673892ad01
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 = https://github.com/sharkdp/bat/archive/refs/tags/v0.24.0.tar.gz
sha256sums = 907554a9eff239f256ee8fe05a922aad84febe4fe10a499def72a4557e9eedfb
pkgname = bat
---
pkgbase = batsignal
pkgver = 1.6.4
pkgdesc = A lightweight battery monitor daemon
arch = any
makedepends = pkg-config
makedepends = libnotify4
makedepends = libnotify-dev
breaks = batsignal
breaks = batsignal-git
maintainer = Harshwardhan Mehrotra <[email protected]>
repology = project: batsignal
source = https://github.com/electrickite/batsignal/archive/refs/tags/1.6.4.tar.gz
sha256sums = 58439dac2b678ab798831fe861c06d2d5c128c4bb4bae1476a62ba1771da3983
pkgname = batsignal
---
pkgbase = bazecor-app
gives = bazecor
pkgver = 1.5.1
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 <[email protected]>
repology = project: bazecor
source = https://github.com/Dygmalab/Bazecor/releases/download/v1.5.1/Bazecor-1.5.1-x64.AppImage
source = https://raw.githubusercontent.com/Elsie19/images/master/bazecor.png
sha256sums = 5676f2aba35527f42d0ea5d3e8863fb23aac5aac6cdf80be89b79b6f1f15a781
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 <[email protected]>
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 <[email protected]>
source = https://gitlab.com/pine64-org/bes2600-firmware.git
pkgname = bes2600-firmware-git
---
pkgbase = bitwarden-cli-bin
gives = bitwarden-cli
pkgver = 2024.1.0
pkgdesc = Bitwarden's command-line interface - Binary
arch = amd64
breaks = bitwarden-cli-git
replaces = bitwarden-cli
maintainer = Elsie19 <[email protected]>
repology = project: bitwarden-cli
source = https://github.com/bitwarden/clients/releases/download/cli-v2024.1.0/bitwarden-cli-linux-2024.1.0.zip
sha256sums = 05c906bf3709151ffcd063624047c327086f80f6b0256ded6a8bcaea044fdb02
pkgname = bitwarden-cli-bin
---
pkgbase = bitwarden-deb
gives = bitwarden
pkgver = 2024.6.4
pkgdesc = Open Source Password Manager
arch = amd64
breaks = bitwarden-app
breaks = bitwarden-git
replaces = bitwarden
maintainer = Oren Klopfer <[email protected]>
repology = project: bitwarden
source = https://github.com/bitwarden/clients/releases/download/desktop-v2024.6.4/Bitwarden-2024.6.4-amd64.deb
sha256sums = 765115154cf12f1248437217b404745dfac37be04191bf8f98225dcdd53294fe
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 <[email protected]>
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 <[email protected]>
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.2.5
pkgdesc = Digital audio workstation for music production, remixing and live performance
arch = amd64
maintainer = Zahrun <[email protected]>
repology = project: bitwig-studio
source = https://www.bitwig.com/dl/Bitwig%20Studio/5.2.5/installer_linux/bitwig-studio-5.2.5.deb
sha256sums = c7a530ea8f9ade702b326d44bf9cad1ad2c3190debf3bd96aa50b4db6cd3f079
pkgname = bitwig-studio-deb
---
pkgbase = blender-bin
gives = blender
pkgver = 4.0.2
pkgdesc = A fully integrated 3D graphics creation suite
url = https://www.blender.org/
arch = amd64
maintainer = Elsie19 <[email protected]>
repology = project: blender
source = https://mirrors.ocf.berkeley.edu/blender/release/Blender4.0/blender-4.0.2-linux-x64.tar.xz
sha256sums = 5583a5588736da8858c522ef17fff5d73be59c47a6fe91ad29c6f3263e22086a
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
breaks = bluegriffon-git
breaks = bluegriffon-bin
breaks = bluegriffon-app
maintainer = Obsidian <[email protected]>
repology = project: bluegriffon
source = http://bluegriffon.org/freshmeat/3.1/bluegriffon-3.1.Ubuntu18.04-x86_64.deb
sha256sums = 83eb53ec8bf9416e52b525508c03440ea0427a3eac409034a72732a7e22994e6
pkgname = bluegriffon-deb
---
pkgbase = blueprint-compiler
pkgver = 0.12.0
pkgdesc = A markup language for GTK user interfaces
url = https://jwestman.pages.gitlab.gnome.org/blueprint-compiler/
arch = any
depends = python3-gi
makedepends = meson
license = LGPL-3.0-or-later
maintainer = Oren Klopfer <[email protected]>
source = https://gitlab.gnome.org/jwestman/blueprint-compiler/-/archive/v0.12.0/blueprint-compiler-v0.12.0.tar.gz
sha256sums = 6dbb4ea851cec164030abded5949ea77ff92032e23527e1c0597d7efe0c36a81
pkgname = blueprint-compiler
---
pkgbase = bottles
pkgver = 51.13
pkgdesc = Easily manage wine and proton prefixes
url = https://github.com/bottlesdevs/Bottles
arch = amd64
depends = cabextract
depends = hicolor-icon-theme
depends = icoextract
depends = imagemagick
depends = p7zip
depends = patool
depends = x11-utils
depends = libdconf1
depends = libgtk-4-1
depends = libgtksourceview-5-0
depends = libadwaita-1-0
depends = libhandy-1-0
depends = libportal-gtk4-1
depends = libwebkit2gtk-4.1-0
depends = gir1.2-adw-1
depends = gir1.2-gtksource-5
depends = python3
depends = python3-chardet
depends = python3-gi
depends = python3-markdown
depends = python3-orjson
depends = python3-pathvalidate
depends = python3-pycurl
depends = python3-requests
depends = python3-yaml
makedepends = blueprint-compiler
makedepends = gettext
makedepends = desktop-file-utils
makedepends = appstream-util
makedepends = meson
makedepends = pkg-config
makedepends = cmake
makedepends = gobject-introspection
makedepends = libglib2.0-dev
makedepends = libgirepository1.0-dev
makedepends = libgtk-4-dev
makedepends = libadwaita-1-dev
makedepends = gir1.2-gtk-4.0
optdepends = gamemode: Game optimization
optdepends = gvfs: Userspace virtual filesystem
optdepends = gnutls-bin: GNU TLS library
optdepends = libvkd3d1: Direct3D 12 to Vulkan translation
pacdeps = python3-fvs
pacdeps = python3-vkbasalt-cli
compatible = debian:trixie
compatible = debian:sid
compatible = ubuntu:oracular
compatible = ubuntu:devel
license = GPL-3.0-only
source = bottles-51.13.tar.gz::https://github.com/bottlesdevs/Bottles/archive/refs/tags/51.13.tar.gz
sha256sums = ba582ef2eaec4f3e533fd92b9b064223373e55b4d942113f071fc90800d49c34
pkgname = bottles
---
pkgbase = bottom-deb
gives = bottom
pkgver = 0.9.6
pkgdesc = A customizable cross-platform graphical process/system monitor for the terminal
url = https://clementtsang.github.io/bottom
arch = amd64
arch = arm64
arch = armhf
breaks = bottom-git
breaks = bottom-bin
replaces = bottom
maintainer = Nezred <[email protected]>
repology = project: bottom
source_amd64 = https://github.com/ClementTsang/bottom/releases/download/0.9.6/bottom_0.9.6_amd64.deb
sha256sums_amd64 = 34a095029d5c74ee577e2ceb01044a5361c8622f89cdcd24784d2fdfeeb92a53
source_arm64 = https://github.com/ClementTsang/bottom/releases/download/0.9.6/bottom_0.9.6_arm64.deb
sha256sums_arm64 = e7f86573271cb0b17579827de0093d91b9805fa2e3a137b23767059e1c0d9c75
source_armhf = https://github.com/ClementTsang/bottom/releases/download/0.9.6/bottom_0.9.6_armhf.deb
sha256sums_armhf = f5a621b23392ba41f89376ee75aa7e2e5ed83069ea19b2ab25209ef5a28c1ccc
pkgname = bottom-deb
---
pkgbase = bpytop-git
gives = bpytop
pkgver = 1.0.68