This repository was archived by the owner on May 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinary-index.xml
More file actions
4062 lines (4062 loc) · 200 KB
/
Copy pathinary-index.xml
File metadata and controls
4062 lines (4062 loc) · 200 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
<INARY>
<Distribution>
<SourceName>Sulin</SourceName>
<Description xml:lang="tr">Sulin 2019 XFCE4 Masaüstü Deposu</Description>
<Description xml:lang="az">Sulin 2019 XFCE4 Anbari</Description>
<Description xml:lang="en">Sulin 2019 XFCE4 Repository</Description>
<Description xml:lang="de">Sulin 2019 XFCE4 desktop-repository</Description>
<Description xml:lang="fr">Sulin 2019 xfce4 dépôt bureautique</Description>
<Description xml:lang="ru">Sulin 2019 xfce4 настольное хранилище</Description>
<Version>2019</Version>
<Type>XFCE</Type>
<BinaryName xml:lang="en">Sulin</BinaryName>
</Distribution>
<SpecFile>
<Source>
<Name>xfce4-notifyd</Name>
<Homepage>http://goodies.xfce.org/projects/applications/xfce4-notifyd</Homepage>
<Packager>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:gui</IsA>
<PartOf>desktop.xfce.addon</PartOf>
<Summary xml:lang="en">A notification deamon</Summary>
<Description xml:lang="en">The Xfce Notify Daemon (xfce4-notifyd for short) is a smallish program that implements the “server-side” portion of the Freedesktop desktop notifications specification.</Description>
<Archive type="tarbz2" sha1sum="4ff6270b95960540f34e66af76145ed3c874a282">http://archive.xfce.org/src/apps/xfce4-notifyd/0.4/xfce4-notifyd-0.4.4.tar.bz2</Archive>
<BuildDependencies>
<Dependency>gtk2-devel</Dependency>
<Dependency>libxfce4util-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency>libnotify-devel</Dependency>
<Dependency>xfconf-devel</Dependency>
</BuildDependencies>
<SourceURI>desktop/xfce/plugin/xfce4-notifyd/pspec.xml</SourceURI>
</Source>
<Package>
<Name>xfce4-notifyd</Name>
<RuntimeDependencies>
<Dependency>gtk2</Dependency>
<Dependency>libxfce4util</Dependency>
<Dependency>libxfce4ui</Dependency>
<Dependency>cairo</Dependency>
<Dependency>pango</Dependency>
<Dependency>libnotify</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>xfconf</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-10-23</Date>
<Version>0.4.4</Version>
<Comment>First release</Comment>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>xfce4-eyes-plugin</Name>
<Homepage>http://goodies.xfce.org/projects/panel-plugins/es/xfce4-eyes-plugin</Homepage>
<Packager>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Packager>
<License>GPLv2</License>
<IsA>library</IsA>
<PartOf>desktop.xfce.addon</PartOf>
<Summary xml:lang="en">Xeyes like plugin for Xfce4</Summary>
<Description xml:lang="en">A panel plug-in which adds classic eyes to your every step.</Description>
<Archive type="tarbz2" sha1sum="1cb1dfd3144a2096a02b1fd06dd5ad24a1242e52">http://archive.xfce.org/src/panel-plugins/xfce4-eyes-plugin/4.5/xfce4-eyes-plugin-4.5.0.tar.bz2</Archive>
<BuildDependencies>
<Dependency>xfce4-panel-devel</Dependency>
</BuildDependencies>
<SourceURI>desktop/xfce/plugin/xfce4-eyes-plugin/pspec.xml</SourceURI>
</Source>
<Package>
<Name>xfce4-eyes-plugin</Name>
<RuntimeDependencies>
<Dependency>xfce4-panel</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>cairo</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libxfcegui4</Dependency>
<Dependency>libxfce4util</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/xfce4/panel/plugins/libeyes.so</Path>
<Path fileType="executable">/usr/libexec</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share/xfce4</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="localedata">/usr/share/locale</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-10-23</Date>
<Version>4.5.0</Version>
<Comment>First release</Comment>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>xfce4-smartbookmark-plugin</Name>
<Homepage>http://goodies.xfce.org/projects/panel-plugins/es/xfce4-smartbookmark-plugin</Homepage>
<Packager>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Packager>
<License>GPLv2</License>
<IsA>library</IsA>
<PartOf>desktop.xfce.plugin</PartOf>
<Summary xml:lang="en">A plugin allows you to send requests directly to your browser to make search</Summary>
<Description xml:lang="en">xfce4-smartbookmark-plugin is a plugin allows you to send requests directly to your browser and perform a custom search.</Description>
<Archive type="tarbz2" sha1sum="0b806fb1ecade453a44b3bc8d1b7bec29026dab0">http://archive.xfce.org/src/panel-plugins/xfce4-smartbookmark-plugin/0.5/xfce4-smartbookmark-plugin-0.5.1.tar.bz2</Archive>
<BuildDependencies>
<Dependency>xfce4-panel-devel</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>libxfce4util-devel</Dependency>
</BuildDependencies>
<SourceURI>desktop/xfce/plugin/xfce4-smartbookmark-plugin/pspec.xml</SourceURI>
</Source>
<Package>
<Name>xfce4-smartbookmark-plugin</Name>
<RuntimeDependencies>
<Dependency>xfce4-panel</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>libxfce4util</Dependency>
<Dependency>libxfcegui4</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share/xfce4</Path>
<Path fileType="localedata">/usr/share/locale</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-10-23</Date>
<Version>0.5.1</Version>
<Comment>First release</Comment>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>xfce4-genmon-plugin</Name>
<Homepage>http://www.xfce.org/projects/xfce4-genmon-plugin</Homepage>
<Packager>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Packager>
<License>LGPLv2</License>
<IsA>app:gui</IsA>
<PartOf>desktop.xfce.plugin</PartOf>
<Summary xml:lang="en">Cyclically spawned executable output on the panel.</Summary>
<Description xml:lang="en">Cyclically spawned executable output on the panel.</Description>
<Archive type="tarbz2" sha1sum="cffc57ae3bce3ac0b3d5a6a055ef533907bb398c">https://archive.xfce.org/src/panel-plugins/xfce4-genmon-plugin/4.0/xfce4-genmon-plugin-4.0.2.tar.bz2</Archive>
<BuildDependencies>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency>xfce4-panel-devel</Dependency>
</BuildDependencies>
<SourceURI>desktop/xfce/plugin/xfce4-genmon-plugin/pspec.xml</SourceURI>
</Source>
<Package>
<Name>xfce4-genmon-plugin</Name>
<RuntimeDependencies>
<Dependency>libxfce4ui</Dependency>
<Dependency>xfce4-panel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib/xfce4/panel/plugins/libgenmon.so</Path>
<Path fileType="executable">/usr/libexec</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-10-23</Date>
<Version>4.0.2</Version>
<Comment>First release</Comment>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>thunar-vcs-plugin</Name>
<Homepage>http://goodies.xfce.org/projects/thunar-plugins/thunar-vcs-plugin</Homepage>
<Packager>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Packager>
<License>GPLv2</License>
<IsA>library</IsA>
<PartOf>desktop.xfce.plugin</PartOf>
<Summary xml:lang="en">An SVN integration and GIT integration to Thunar</Summary>
<Description xml:lang="en">The Thunar VCS Plugin adds Subversion and GIT actions to the context menu of thunar. This gives a SVN integration and GIT integration to Thunar.</Description>
<Archive type="tarbz2" sha1sum="bf94601c450165e63267343f9460367883b84c5a">http://archive.xfce.org/src/thunar-plugins/thunar-vcs-plugin/0.2/thunar-vcs-plugin-0.2.0.tar.bz2</Archive>
<BuildDependencies>
<Dependency>xfce4-panel-devel</Dependency>
<Dependency>Thunar-devel</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>cairo-devel</Dependency>
<Dependency>libxfce4util-devel</Dependency>
</BuildDependencies>
<SourceURI>desktop/xfce/plugin/thunar-vcs-plugin/pspec.xml</SourceURI>
</Source>
<Package>
<Name>thunar-vcs-plugin</Name>
<RuntimeDependencies>
<Dependency>xfce4-panel</Dependency>
<Dependency>Thunar</Dependency>
<Dependency>git</Dependency>
<Dependency>subversion</Dependency>
<Dependency>apr</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>cairo</Dependency>
<Dependency>libxfce4util</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="executable">/usr/libexec</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="doc">/usr/share/xfce4/doc</Path>
<Path fileType="data">/usr/share/xfce4</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="localedata">/usr/share/locale</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-10-23</Date>
<Version>0.2.0</Version>
<Comment>First release</Comment>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>thunar-archive-plugin</Name>
<Homepage>http://goodies.xfce.org/projects/thunar-plugins/thunar-archive-plugin</Homepage>
<Packager>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Packager>
<License>GPLv2</License>
<IsA>library</IsA>
<PartOf>desktop.xfce.plugin</PartOf>
<Summary xml:lang="en">A plugin allows you to create and extract archive files</Summary>
<Description xml:lang="en">The Thunar Archive Plugin allows you to create and extract archive files using the file context menus in the Thunar file manager.</Description>
<Archive type="tarbz2" sha1sum="a5f2e9c57b2439364b089eeccd1a7d0e926a0cc2">http://archive.xfce.org/src/thunar-plugins/thunar-archive-plugin/0.4/thunar-archive-plugin-0.4.0.tar.bz2</Archive>
<BuildDependencies>
<Dependency>exo-devel</Dependency>
<Dependency>Thunar-devel</Dependency>
</BuildDependencies>
<SourceURI>desktop/xfce/plugin/thunar-archive-plugin/pspec.xml</SourceURI>
</Source>
<Package>
<Name>thunar-archive-plugin</Name>
<RuntimeDependencies>
<Dependency>Thunar</Dependency>
<Dependency>exo</Dependency>
<Dependency>gtk2</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="executable">/usr/libexec</Path>
<Path fileType="localedata">/usr/share/locale</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-10-23</Date>
<Version>0.4.0</Version>
<Comment>First release</Comment>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>xfce4-alsa-plugin</Name>
<Homepage>https://github.com/equeim/xfce4-alsa-plugin/</Homepage>
<Packager>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Packager>
<License>GPLv2</License>
<IsA>library</IsA>
<PartOf>desktop.xfce.plugin</PartOf>
<Summary xml:lang="en">Simple ALSA volume control for xfce4-panel</Summary>
<Description xml:lang="en">Alsa sound manager panel plugin for xfce for Linux and *BSD.</Description>
<Archive type="targz" sha1sum="7bde0df79dcae54d0d5c8eb9315b768f5722f235">https://github.com/equeim/xfce4-alsa-plugin/archive/0.2.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>alsa-lib-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>xfce4-panel-devel</Dependency>
</BuildDependencies>
<SourceURI>desktop/xfce/plugin/xfce4-alsa-plugin/pspec.xml</SourceURI>
</Source>
<Package>
<Name>xfce4-alsa-plugin</Name>
<RuntimeDependencies>
<Dependency>xfce4-panel</Dependency>
<Dependency>alsa-lib</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>cairo</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libxfcegui4</Dependency>
<Dependency>libxfce4util</Dependency>
<Dependency>atk</Dependency>
<Dependency>pango</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>libxfce4ui</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/libexec</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share/xfce4</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="data">/usr/lib/xfce4</Path>
<Path fileType="localedata">/usr/share/locale</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-10-23</Date>
<Version>0.2.1</Version>
<Comment>First release</Comment>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>thunar-media-tags-plugin</Name>
<Homepage>http://goodies.xfce.org/projects/thunar-plugins/thunar-media-tags-plugin</Homepage>
<Packager>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:gui</IsA>
<PartOf>desktop.xfce.plugin</PartOf>
<Summary xml:lang="en">Thunar media tags plugin</Summary>
<Description xml:lang="en">The Thunar Media Tags Plugin (thunar-media-tags-plugin) adds special features for media files to the Thunar File Manager.</Description>
<Icon>Thunar</Icon>
<Archive type="tarbz2" sha1sum="93beb24d8b3ba2b7da22c18e6b23512d45516e38">http://archive.xfce.org/src/thunar-plugins/thunar-media-tags-plugin/0.3/thunar-media-tags-plugin-0.3.0.tar.bz2</Archive>
<BuildDependencies>
<Dependency>Thunar-devel</Dependency>
<Dependency>taglib-devel</Dependency>
<Dependency>exo-devel</Dependency>
<Dependency>atk-devel</Dependency>
</BuildDependencies>
<SourceURI>desktop/xfce/plugin/thunar-media-tags-plugin/pspec.xml</SourceURI>
</Source>
<Package>
<Name>thunar-media-tags-plugin</Name>
<RuntimeDependencies>
<Dependency>gtk2</Dependency>
<Dependency>Thunar</Dependency>
<Dependency>taglib</Dependency>
<Dependency>exo</Dependency>
<Dependency>atk</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-10-23</Date>
<Version>0.3.0</Version>
<Comment>First release</Comment>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>xfce4-systemload-plugin</Name>
<Homepage>http://goodies.xfce.org/projects/panel-plugins/xfce4-systemload-plugin</Homepage>
<Packager>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Packager>
<License>BSD-2</License>
<IsA>app:gui</IsA>
<PartOf>desktop.xfce.plugin</PartOf>
<Summary xml:lang="en">Xfce4 system load plugin</Summary>
<Description xml:lang="en">Xfce4-systemload-plugin is a plugin which displays the current CPU load, the memory in use, the swap space and the system uptime in the Xfce panel.</Description>
<Icon>xfce4-panel</Icon>
<Archive type="tarbz2" sha1sum="bab853f85b8654b08902f4c724abb06c0fa6a90c">http://archive.xfce.org/src/panel-plugins/xfce4-systemload-plugin/1.2/xfce4-systemload-plugin-1.2.3.tar.bz2</Archive>
<BuildDependencies>
<Dependency>xfce4-panel-devel</Dependency>
</BuildDependencies>
<SourceURI>desktop/xfce/plugin/xfce4-systemload-plugin/pspec.xml</SourceURI>
</Source>
<Package>
<Name>xfce4-systemload-plugin</Name>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>pango</Dependency>
<Dependency>upower</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>libxfce4ui</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>cairo</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>xfce4-panel</Dependency>
<Dependency>libxfcegui4</Dependency>
<Dependency>libxfce4util</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/libexec</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="data">/usr/share/xfce4</Path>
<Path fileType="library">/usr/lib</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-10-23</Date>
<Version>1.2.3</Version>
<Comment>First release</Comment>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>xfce4-fsguard-plugin</Name>
<Homepage>http://archive.xfce.org/src/panel-plugins/xfce4-fsguard-plugin/1.0/</Homepage>
<Packager>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:gui</IsA>
<PartOf>desktop.xfce.plugin</PartOf>
<Summary xml:lang="en">File system usage monitor plugin for Xfce4</Summary>
<Description xml:lang="en">File system usage monitor plugin for the Xfce4 panel.</Description>
<Archive type="tarbz2" sha1sum="89caa7e8081f4b7645c65e24175ae26452918e6d">http://archive.xfce.org/src/panel-plugins/xfce4-fsguard-plugin/1.1/xfce4-fsguard-plugin-1.1.1.tar.bz2</Archive>
<BuildDependencies>
<Dependency>xfce4-panel-devel</Dependency>
</BuildDependencies>
<SourceURI>desktop/xfce/plugin/xfce4-fsguard-plugin/pspec.xml</SourceURI>
</Source>
<Package>
<Name>xfce4-fsguard-plugin</Name>
<RuntimeDependencies>
<Dependency>xfce4-panel</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>cairo</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>atk</Dependency>
<Dependency>pango</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>libxfce4ui</Dependency>
<Dependency>libxfce4util</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/libexec</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share/xfce4</Path>
<Path fileType="data">/usr/lib/xfce4</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="localedata">/usr/share/locale</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-10-23</Date>
<Version>1.1.1</Version>
<Comment>First release</Comment>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>xfce4-dict</Name>
<Homepage>http://goodies.xfce.org/projects/applications/xfce4-dict</Homepage>
<Packager>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:gui</IsA>
<PartOf>desktop.xfce.addon</PartOf>
<Summary xml:lang="en">A client program to query different dictionaries</Summary>
<Description xml:lang="en">xfce4-dict allows you to search different kinds of dictionary services for words or phrases and shows you the result.</Description>
<Archive type="tarbz2" sha1sum="ece031bc1855a204333ada180bdc17a4ae87d619">http://archive.xfce.org/src/apps/xfce4-dict/0.8/xfce4-dict-0.8.3.tar.bz2</Archive>
<BuildDependencies>
<Dependency>xfce4-panel-devel</Dependency>
<Dependency>libxfcegui4-devel</Dependency>
</BuildDependencies>
<SourceURI>desktop/xfce/plugin/xfce4-dict/pspec.xml</SourceURI>
</Source>
<Package>
<Name>xfce4-dict</Name>
<RuntimeDependencies>
<Dependency>gtk2</Dependency>
<Dependency>cairo</Dependency>
<Dependency>pango</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libxfcegui4</Dependency>
<Dependency>xfce4-panel</Dependency>
<Dependency>libxfce4util</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/xfce4/panel/plugins/libxfce4dict.so</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/libexec</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-10-23</Date>
<Version>0.8.3</Version>
<Comment>First release</Comment>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>xfce4-equake-plugin</Name>
<Homepage>http://goodies.xfce.org/projects/panel-plugins/es/xfce4-equake-plugin</Homepage>
<Packager>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Packager>
<License>GPLv2</License>
<IsA>library</IsA>
<PartOf>desktop.xfce.addon</PartOf>
<Summary xml:lang="en">Earthquake plugin for Xfce4</Summary>
<Description xml:lang="en">Panel plug-in that displays information about earthquakes at regular intervals.</Description>
<Archive type="tarbz2" sha1sum="0ca3ee17fdf3cc18208dba48ff2c8f40d9c5503f">http://archive.xfce.org/src/panel-plugins/xfce4-equake-plugin/1.3/xfce4-equake-plugin-1.3.8.tar.bz2</Archive>
<BuildDependencies>
<Dependency>xfce4-panel-devel</Dependency>
</BuildDependencies>
<SourceURI>desktop/xfce/plugin/xfce4-equake-plugin/pspec.xml</SourceURI>
</Source>
<Package>
<Name>xfce4-equake-plugin</Name>
<RuntimeDependencies>
<Dependency>xfce4-panel</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>cairo</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libxfcegui4</Dependency>
<Dependency>libxfce4util</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/xfce4/panel-plugins/xfce4-equake-plugin</Path>
<Path fileType="executable">/usr/libexec</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share/xfce4</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="localedata">/usr/share/locale</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-10-23</Date>
<Version>1.2.1</Version>
<Comment>First release</Comment>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>xfce4-volumed-pulse</Name>
<Homepage>http://git.xfce.org/apps/xfce4-volumed-pulse/</Homepage>
<Packager>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Packager>
<License>GPLv3</License>
<IsA>app:gui</IsA>
<PartOf>desktop.xfce.plugin</PartOf>
<Summary xml:lang="en">A volume keys control daemon for Xfce</Summary>
<Description xml:lang="en">Basic daemon enabling the XF86 Volume keys and supporting synchronous volume notifications</Description>
<Archive type="tarbz2" sha1sum="ee28e49fff77b26e9297a442d502602e33619e28">http://archive.xfce.org/src/apps/xfce4-volumed-pulse/0.2/xfce4-volumed-pulse-0.2.3.tar.bz2</Archive>
<BuildDependencies>
<Dependency>gst-plugins-base-devel</Dependency>
<Dependency>gstreamer-devel</Dependency>
<Dependency>libnotify-devel</Dependency>
<Dependency>xfconf-devel</Dependency>
<Dependency>keybinder3-devel</Dependency>
</BuildDependencies>
<SourceURI>desktop/xfce/plugin/xfce4-volumed-pulse/pspec.xml</SourceURI>
</Source>
<Package>
<Name>xfce4-volumed-pulse</Name>
<RuntimeDependencies>
<Dependency>gtk2</Dependency>
<Dependency>gst-plugins-base</Dependency>
<Dependency>gstreamer</Dependency>
<Dependency>libnotify</Dependency>
<Dependency>xfconf</Dependency>
<Dependency>keybinder3</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc/xdg/autostart/</Path>
<Path fileType="executable">/usr/bin/</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-10-23</Date>
<Version>0.2.3</Version>
<Comment>First release</Comment>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>xfce4-composite-editor</Name>
<Homepage>http://keithhedger.hostingsiteforfree.com/pages/apps.html#fbpic</Homepage>
<Packager>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:gui</IsA>
<PartOf>desktop.xfce.plugin</PartOf>
<Summary xml:lang="en">simple GUI to control the various Xfce4 WM tweaks that are not available via the "Window Manager Tweaks" control panel.</Summary>
<Description xml:lang="en">These settings are available via the xconf settings editor but that is one of the most awkward GUI's I have ever used as you have to select the xfwm4 channel, expand the tree, scroll to the option you want, select it, click edit, change the setting and click save, then the tree gets collapsed and you have to start again!
So this nice simple GUI to control the composite manager, the settings are self explanatory.</Description>
<Archive type="targz" sha1sum="2f7b547689568ba9fb31fdd0e4edc717dc540cf9">https://github.com/SulinOS/xfce4-composite-editor/archive/0.2.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>libxfce4ui-devel</Dependency>
</BuildDependencies>
<SourceURI>desktop/xfce/plugin/xfce4-composite-editor/pspec.xml</SourceURI>
</Source>
<Package>
<Name>xfce4-composite-editor</Name>
<RuntimeDependencies>
<Dependency>gtk2</Dependency>
<Dependency>xfconf</Dependency>
<Dependency>libxfce4ui</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="application">/usr/share/applications</Path>
<Path fileType="data">/usr/share/pixmaps</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="doc">/usr/share/Xfwm4CompositeEditor/docs/gpl-3.0.txt</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-10-21</Date>
<Version>0.2.0</Version>
<Comment>First release</Comment>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>xfce4-clipman-plugin</Name>
<Homepage>http://goodies.xfce.org/projects/panel-plugins/xfce4-clipman-plugin</Homepage>
<Packager>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Packager>
<License>GPLv2+</License>
<IsA>app:gui</IsA>
<PartOf>desktop.xfce.plugin</PartOf>
<Summary xml:lang="en">A clipboard plugin for the Xfce4 panel</Summary>
<Description xml:lang="en">A clipboard plugin for the Xfce4 panel</Description>
<Archive type="tarbz2" sha1sum="4ac0cb95cd6082ec598f5ba42c757eb5f48502a3">http://archive.xfce.org/src/panel-plugins/xfce4-clipman-plugin/1.4/xfce4-clipman-plugin-1.4.3.tar.bz2</Archive>
<BuildDependencies>
<Dependency>gtk2-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency>libxfce4util-devel</Dependency>
<Dependency>xfce4-panel-devel</Dependency>
<Dependency>exo-devel</Dependency>
<Dependency>libXtst-devel</Dependency>
</BuildDependencies>
<SourceURI>desktop/xfce/plugin/xfce4-clipman-plugin/pspec.xml</SourceURI>
</Source>
<Package>
<Name>xfce4-clipman-plugin</Name>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>cairo</Dependency>
<Dependency>pango</Dependency>
<Dependency>libnotify</Dependency>
<Dependency>libxfce4ui</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>xfce4-panel</Dependency>
<Dependency>libxfce4util</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="config">/etc/xdg</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="data">/usr/share/xfce4</Path>
</Files>
</Package>
<Package>
<Name>xfce4-clipman-plugin-devel</Name>
<Summary xml:lang="en">xfce4-sensors-plugin için geliştirme dosyaları</Summary>
<RuntimeDependencies>
<Dependency release="1">xfce4-clipman-plugin</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency>libxfce4util-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-10-23</Date>
<Version>1.4.3</Version>
<Comment>First release</Comment>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>xfce4-datetime-plugin</Name>
<Homepage>http://goodies.xfce.org/projects/panel-plugins/xfce4-datetime-plugin</Homepage>
<Packager>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Packager>
<License>GPLv2</License>
<IsA>library</IsA>
<PartOf>desktop.xfce.plugin</PartOf>
<Summary xml:lang="en">This plugin shows the date and time in the panel</Summary>
<Description xml:lang="en">xfce4-datetime-plugin shows the date and time in the panel, and a calendar appears when you left-click on it.</Description>
<Archive type="tarbz2" sha1sum="2d7ed667d6c2f5e8b9f4eb80cb001d2473ae2a60">http://archive.xfce.org/src/panel-plugins/xfce4-datetime-plugin/0.8/xfce4-datetime-plugin-0.8.0.tar.bz2</Archive>
<BuildDependencies>
<Dependency>xfce4-panel-devel</Dependency>
</BuildDependencies>
<SourceURI>desktop/xfce/plugin/xfce4-datetime-plugin/pspec.xml</SourceURI>
</Source>
<Package>
<Name>xfce4-datetime-plugin</Name>
<RuntimeDependencies>
<Dependency>xfce4-panel</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>cairo</Dependency>
<Dependency>pango</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libxfcegui4</Dependency>
<Dependency>libxfce4util</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share/xfce4</Path>
<Path fileType="localedata">/usr/share/locale</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-10-23</Date>
<Version>0.8.0</Version>
<Comment>First release</Comment>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>thunar-shares-plugin</Name>
<Homepage>http://thunar.xfce.org/pwiki/projects/es/thunar-shares-plugin</Homepage>
<Packager>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Packager>
<License>GPLv2</License>
<IsA>library</IsA>
<PartOf>desktop.xfce.plugin</PartOf>
<Summary xml:lang="en">A plugin which allows you to quickly share a folder using Samba</Summary>
<Description xml:lang="en">thunar-shares-plugin allows you to quickly share a folder using Samba from Thunar (the XFCE file manager) without requiring root access.</Description>
<Archive type="tarbz2" sha1sum="0f68bdfad6f2f4729891fbead594ed6712987de0">http://archive.xfce.org/src/thunar-plugins/thunar-shares-plugin/0.3/thunar-shares-plugin-0.3.0.tar.bz2</Archive>
<BuildDependencies>
<Dependency>Thunar-devel</Dependency>
</BuildDependencies>
<SourceURI>desktop/xfce/plugin/thunar-shares-plugin/pspec.xml</SourceURI>
</Source>
<Package>
<Name>thunar-shares-plugin</Name>
<RuntimeDependencies>
<Dependency>Thunar</Dependency>
<Dependency>gtk2</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="localedata">/usr/share/locale</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-10-23</Date>
<Version>0.3.0</Version>
<Comment>First release</Comment>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>xfce4-screenshooter</Name>
<Homepage>http://goodies.xfce.org/projects/applications/xfce4-screenshooter</Homepage>
<Packager>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:gui</IsA>
<PartOf>desktop.xfce.addon</PartOf>
<Summary xml:lang="en">A plugin allows you to capture the entire screen</Summary>
<Description xml:lang="en">This application allows you to capture the entire screen, the active window or a selected region.</Description>
<Archive type="tarbz2" sha1sum="e7a0b34fadd82d84d4197706d5b8fd383f312747">http://archive.xfce.org/src/apps/xfce4-screenshooter/1.9/xfce4-screenshooter-1.9.6.tar.bz2</Archive>
<BuildDependencies>
<Dependency>gtk2-devel</Dependency>
<Dependency>libsoup-devel</Dependency>
<Dependency>libxfce4util-devel</Dependency>
<Dependency>libxfcegui4-devel</Dependency>
<Dependency>libXext-devel</Dependency>
</BuildDependencies>
<SourceURI>desktop/xfce/plugin/xfce4-screenshooter/pspec.xml</SourceURI>
</Source>
<Package>
<Name>xfce4-screenshooter</Name>
<RuntimeDependencies>
<Dependency>exo</Dependency>
<Dependency>atk</Dependency>
<Dependency>libSM</Dependency>
<Dependency>libICE</Dependency>
<Dependency>libXfixes</Dependency>
<Dependency>libxfce4ui</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>libsoup</Dependency>
<Dependency>libxfce4util</Dependency>
<Dependency>libxfcegui4</Dependency>
<Dependency>xfce4-panel</Dependency>
<Dependency>cairo</Dependency>
<Dependency>pango</Dependency>
<Dependency>libXext</Dependency>
<Dependency>gdk-pixbuf</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="executable">/usr/libexec</Path>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-10-23</Date>
<Version>1.9.6</Version>
<Comment>First release</Comment>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>xfce4-cpugraph-plugin</Name>
<Homepage>http://goodies.xfce.org/projects/panel-plugins/es/xfce4-cpugraph-plugin</Homepage>
<Packager>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Packager>
<License>GPLv2</License>
<IsA>library</IsA>
<PartOf>desktop.xfce.addon</PartOf>
<Summary xml:lang="en">CPU Frequency Graphic plugin for Xfce4</Summary>
<Description xml:lang="en">xfce4-cupgraph-plugin shows CPU frequency into a graph in the Xfce Panel.</Description>
<Archive type="tarbz2" sha1sum="4f712fe055d259ced8d279bad631743a065653d1">http://archive.xfce.org/src/panel-plugins/xfce4-cpugraph-plugin/1.1/xfce4-cpugraph-plugin-1.1.0.tar.bz2</Archive>
<BuildDependencies>
<Dependency>xfce4-panel-devel</Dependency>
</BuildDependencies>
<SourceURI>desktop/xfce/plugin/xfce4-cpugraph-plugin/pspec.xml</SourceURI>
</Source>
<Package>
<Name>xfce4-cpugraph-plugin</Name>
<RuntimeDependencies>
<Dependency>xfce4-panel</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>cairo</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libxfcegui4</Dependency>
<Dependency>libxfce4util</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/xfce4/panel/plugins/libcpugraph.so</Path>
<Path fileType="executable">/usr/libexec</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share/xfce4</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="localedata">/usr/share/locale</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-10-23</Date>
<Version>1.1.0</Version>
<Comment>First release</Comment>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>xfce4-embed-plugin</Name>
<Homepage>http://goodies.xfce.org/projects/panel-plugins/es/xfce4-embed-plugin</Homepage>
<Packager>
<Name>Süleyman Poyraz</Name>
<Email>zaryob.dev@gmail.com</Email>
</Packager>
<License>GPLv2</License>
<IsA>library</IsA>
<PartOf>desktop.xfce.addon</PartOf>
<Summary xml:lang="en">Embedding Arbitrary Application plugin for Xfce4</Summary>
<Description xml:lang="en">A plug-in for embedding arbitrary application windows into the Xfce panel.</Description>
<Archive type="tarbz2" sha1sum="9beeecfff2b55e2e64a3ac9ff296490abfe1187a">http://archive.xfce.org/src/panel-plugins/xfce4-embed-plugin/1.6/xfce4-embed-plugin-1.6.0.tar.bz2</Archive>
<BuildDependencies>
<Dependency>xfce4-panel-devel</Dependency>
</BuildDependencies>
<SourceURI>desktop/xfce/plugin/xfce4-embed-plugin/pspec.xml</SourceURI>
</Source>