├── .gitignore ├── extra ├── wv │ ├── version │ ├── sources │ ├── checksums │ ├── depends │ └── build ├── babl │ ├── version │ ├── sources │ ├── checksums │ ├── depends │ └── build ├── exiv2 │ ├── version │ ├── depends │ ├── sources │ ├── checksums │ └── build ├── gegl │ ├── version │ ├── sources │ ├── checksums │ ├── depends │ └── build ├── gexiv2 │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── yaml │ ├── version │ ├── sources │ ├── checksums │ └── build ├── appstream │ ├── version │ ├── depends │ ├── post-install │ ├── sources │ ├── checksums │ ├── build │ └── patches │ │ └── no-gtk-doc.patch ├── goffice │ ├── version │ ├── sources │ ├── checksums │ └── depends ├── libgsf │ ├── version │ ├── checksums │ ├── sources │ ├── depends │ └── build ├── libmypaint │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── librsvg │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── appstream-glib │ ├── version │ ├── checksums │ ├── sources │ ├── depends │ └── build ├── mypaint-brushes │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── poppler-data │ ├── version │ ├── sources │ ├── checksums │ └── build ├── adwaita-icon-theme │ ├── version │ ├── checksums │ ├── sources │ └── build └── gobject-introspection │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── gfx ├── gdl │ ├── version │ ├── sources │ ├── checksums │ ├── build │ └── depends ├── grafx2 │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── gsl │ ├── version │ ├── sources │ ├── checksums │ └── build ├── jp2a │ ├── version │ ├── depends │ ├── sources │ ├── checksums │ └── build ├── libresprite │ ├── checksums │ ├── version │ ├── sources │ ├── depends │ └── build ├── atkmm │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── cairomm │ ├── version │ ├── sources │ ├── checksums │ ├── build │ └── depends ├── gimp │ ├── version │ ├── sources │ ├── checksums │ └── depends ├── glibmm │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── gtkmm │ ├── version │ ├── checksums │ ├── sources │ ├── build │ └── depends ├── inkscape │ ├── version │ ├── sources │ ├── checksums │ └── build ├── libXpm │ ├── version │ ├── sources │ ├── checksums │ ├── depends │ └── build ├── pangomm │ ├── version │ ├── checksums │ ├── sources │ ├── build │ └── depends ├── potrace │ ├── version │ ├── sources │ ├── checksums │ └── build └── double-conversion │ ├── version │ ├── checksums │ ├── sources │ └── build ├── science ├── glpk │ ├── depends │ ├── version │ ├── sources │ ├── checksums │ └── build ├── R │ ├── version │ ├── sources │ ├── checksums │ └── depends ├── gd │ ├── version │ ├── sources │ ├── depends │ ├── checksums │ └── build ├── gnuplot │ ├── version │ ├── checksums │ ├── sources │ ├── depends │ └── build ├── lapack │ ├── version │ ├── checksums │ ├── sources │ └── build ├── octave │ ├── version │ ├── sources │ ├── checksums │ └── depends └── qhull │ ├── version │ ├── sources │ ├── checksums │ └── build ├── garbage ├── btfs │ ├── version │ ├── sources │ ├── checksums │ ├── depends │ └── build ├── lynis │ ├── depends │ ├── version │ ├── sources │ ├── files │ │ └── lynis.cron │ ├── checksums │ └── build ├── mimi │ ├── depends │ ├── version │ ├── sources │ └── build ├── tinywm │ ├── depends │ ├── version │ ├── sources │ └── build ├── dmg2img │ ├── version │ ├── depends │ ├── sources │ ├── checksums │ └── build ├── testdisk │ ├── version │ ├── sources │ ├── checksums │ ├── depends │ └── build ├── tinyemu │ ├── version │ ├── depends │ ├── sources │ ├── checksums │ └── build ├── tiramisu │ ├── version │ ├── depends │ ├── sources │ ├── checksums │ └── build ├── android-tools │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── libtorrent-rasterbar │ ├── version │ ├── checksums │ ├── sources │ ├── depends │ └── build ├── readme.md └── screenshot.png ├── java ├── fastjar │ ├── version │ ├── depends │ ├── sources │ ├── checksums │ ├── build │ └── patches │ │ ├── 0001-Properly-zero-terminate-filename.patch │ │ └── 0002-Fix-write-return-value-check.patch ├── gcc6-gcj │ ├── version │ ├── depends │ ├── patches │ │ ├── 051_all_libiberty-pic.patch │ │ ├── 901-fix-cxxflags-passing.patch │ │ ├── 302-gcc-4.9-musl-fortify.patch │ │ ├── 320-libffi-gnulinux.patch │ │ └── 050_all_libiberty-asprintf.patch │ └── post-install ├── libXp │ ├── version │ ├── sources │ ├── checksums │ ├── depends │ └── build └── lksctp-tools │ ├── version │ ├── sources │ ├── checksums │ ├── depends │ └── build ├── libs ├── fltk │ ├── version │ ├── sources │ ├── checksums │ ├── build │ └── depends ├── glfw │ ├── version │ ├── sources │ ├── checksums │ ├── depends │ └── build ├── hyphen │ ├── version │ ├── sources │ ├── checksums │ └── build ├── jansson │ ├── version │ ├── sources │ ├── checksums │ └── build ├── libXaw │ ├── version │ ├── sources │ ├── checksums │ ├── depends │ └── build ├── libcdr │ ├── version │ ├── depends │ ├── sources │ ├── checksums │ └── build ├── libgudev │ ├── version │ ├── checksums │ ├── sources │ └── build ├── libmspub │ ├── version │ ├── depends │ ├── sources │ ├── checksums │ └── build ├── libqxp │ ├── version │ ├── depends │ ├── sources │ ├── checksums │ └── build ├── libverto │ ├── version │ ├── sources │ ├── checksums │ └── build ├── libvisio │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── libwpd │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── libwpg │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── libxml2 │ ├── version │ ├── depends │ ├── sources │ ├── checksums │ └── build ├── libxslt │ ├── version │ ├── sources │ ├── checksums │ ├── depends │ └── build ├── libzmf │ ├── version │ ├── depends │ ├── sources │ ├── checksums │ └── build ├── raylib │ ├── version │ ├── sources │ ├── checksums │ ├── depends │ └── build ├── gstreamer │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── libexecinfo │ ├── version │ ├── sources │ ├── checksums │ ├── patches │ │ └── 03-define-gnu-source.patch │ └── build ├── libfreehand │ ├── version │ ├── depends │ ├── sources │ ├── checksums │ ├── build │ └── patches │ │ └── fix-build.patch ├── libkscreen │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── libpagemaker │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── librevenge │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── libsigc++ │ ├── version │ ├── checksums │ ├── sources │ └── build ├── gst-plugins-base │ ├── version │ ├── checksums │ ├── sources │ ├── depends │ └── build ├── gst-transcoder │ ├── version │ ├── checksums │ ├── sources │ ├── depends │ └── build └── gst-editing-services │ ├── version │ ├── checksums │ ├── depends │ ├── sources │ └── build ├── lxqt ├── liblxqt │ ├── version │ ├── checksums │ ├── sources │ ├── depends │ └── build ├── libqtxdg │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── lxqt │ ├── build │ ├── version │ └── depends ├── upower │ ├── version │ ├── depends │ ├── sources │ ├── checksums │ └── build ├── xmlto │ ├── version │ ├── sources │ ├── checksums │ └── build ├── dbus-glib │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── libfm-extra │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── libfm-qt │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── libsysstat │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── lximage-qt │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── lxmenu-data │ ├── version │ ├── sources │ ├── checksums │ ├── build │ └── patches │ │ └── remove_po_dir.patch ├── lxqt-about │ ├── depends │ ├── version │ ├── checksums │ ├── sources │ └── build ├── lxqt-admin │ ├── depends │ ├── version │ ├── checksums │ ├── sources │ └── build ├── lxqt-archiver │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── lxqt-config │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── lxqt-panel │ ├── version │ ├── checksums │ ├── sources │ ├── build │ └── depends ├── lxqt-runner │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── lxqt-session │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── lxqt-sudo │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── lxqt-themes │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── menu-cache │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── muparser │ ├── version │ ├── checksums │ ├── sources │ └── build ├── obconf-qt │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── pcmanfm-qt │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── qterminal │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── qtermwidget │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── xdg-user-dirs │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── libdbusmenu-qt │ ├── depends │ ├── version │ ├── checksums │ ├── sources │ └── build ├── lxqt-build-tools │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── lxqt-globalkeys │ ├── depends │ ├── version │ ├── checksums │ ├── sources │ └── build ├── lxqt-policykit │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── lxqt-qtplugin │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── lxqt-notificationd │ ├── depends │ ├── version │ ├── checksums │ ├── sources │ └── build ├── lxqt-openssh-askpass │ ├── depends │ ├── version │ ├── checksums │ ├── sources │ └── build ├── lxqt-powermanagement │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build └── screenshot.png ├── office ├── ledger │ ├── version │ ├── depends │ ├── sources │ ├── checksums │ └── build ├── abiword │ ├── version │ ├── checksums │ ├── post-install │ ├── sources │ └── depends ├── gnumeric │ ├── version │ ├── post-install │ ├── depends │ ├── sources │ ├── checksums │ └── patches │ │ └── remove-xml-parser.patch ├── wordgrinder │ ├── version │ ├── sources │ ├── checksums │ ├── build │ └── depends ├── abiword-plugin-applix │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-bmp │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-collab │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-eml │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-epub │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-garble │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-gdict │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-gimp │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-google │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-hancom │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-hrtext │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-iscii │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-kword │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-latex │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-mht │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-mif │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-opml │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-paint │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-pdb │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-pdf │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-s5 │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-sdw │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-t602 │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-wml │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-xslfo │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-babelfish │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-clarisworks │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-command │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-docbook │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-mswrite │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-openwriter │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-openxml │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-urldict │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-wikipedia │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-freetranslation │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-loadbindings │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── abiword-plugin-passepartout │ ├── version │ ├── checksums │ ├── sources │ └── depends └── abiword-plugin-presentation │ ├── version │ ├── checksums │ ├── sources │ └── depends ├── video ├── dav1d │ ├── version │ ├── checksums │ ├── sources │ └── build ├── speex │ ├── depends │ ├── version │ ├── sources │ ├── checksums │ └── build ├── handbrake │ ├── version │ ├── sources │ ├── checksums │ └── depends ├── libbluray │ ├── version │ ├── checksums │ ├── sources │ └── build ├── libdvdcss │ ├── version │ ├── checksums │ ├── sources │ └── build ├── libdvdnav │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build └── libdvdread │ ├── depends │ ├── version │ ├── checksums │ ├── sources │ └── build ├── python ├── python-cairo │ ├── version │ ├── depends │ ├── checksums │ ├── sources │ └── build ├── python-gobject │ ├── version │ ├── checksums │ ├── sources │ ├── depends │ └── build ├── python-telegram │ ├── depends │ ├── version │ ├── checksums │ ├── sources │ └── build └── python-gstreamer │ ├── version │ ├── depends │ ├── sources │ ├── checksums │ ├── build │ └── patches │ └── python-3.8-compat.patch ├── themes ├── arc-theme │ ├── version │ ├── checksums │ ├── sources │ └── build └── papirus-icon-theme │ ├── version │ ├── build │ ├── checksums │ └── sources └── .github ├── workflows └── main.yml └── PULL_REQUEST_TEMPLATE.md /.gitignore: -------------------------------------------------------------------------------- 1 | next/ 2 | -------------------------------------------------------------------------------- /extra/wv/version: -------------------------------------------------------------------------------- 1 | 1.2.9 1 2 | -------------------------------------------------------------------------------- /gfx/gdl/version: -------------------------------------------------------------------------------- 1 | 3.34.0 1 2 | -------------------------------------------------------------------------------- /gfx/grafx2/version: -------------------------------------------------------------------------------- 1 | 2.7 1 2 | -------------------------------------------------------------------------------- /gfx/gsl/version: -------------------------------------------------------------------------------- 1 | 2.6 1 2 | -------------------------------------------------------------------------------- /gfx/jp2a/version: -------------------------------------------------------------------------------- 1 | 1.0.9 1 2 | -------------------------------------------------------------------------------- /gfx/libresprite/checksums: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /science/glpk/depends: -------------------------------------------------------------------------------- 1 | gmp 2 | -------------------------------------------------------------------------------- /extra/babl/version: -------------------------------------------------------------------------------- 1 | 0.1.84 1 2 | -------------------------------------------------------------------------------- /extra/exiv2/version: -------------------------------------------------------------------------------- 1 | 0.27.3 1 2 | -------------------------------------------------------------------------------- /extra/gegl/version: -------------------------------------------------------------------------------- 1 | 0.4.28 1 2 | -------------------------------------------------------------------------------- /extra/gexiv2/version: -------------------------------------------------------------------------------- 1 | 0.12.1 1 2 | -------------------------------------------------------------------------------- /extra/yaml/version: -------------------------------------------------------------------------------- 1 | 0.2.5 1 2 | -------------------------------------------------------------------------------- /garbage/btfs/version: -------------------------------------------------------------------------------- 1 | 2.20 1 2 | -------------------------------------------------------------------------------- /garbage/lynis/depends: -------------------------------------------------------------------------------- 1 | bash 2 | -------------------------------------------------------------------------------- /garbage/lynis/version: -------------------------------------------------------------------------------- 1 | 2.7.5 1 2 | -------------------------------------------------------------------------------- /garbage/mimi/depends: -------------------------------------------------------------------------------- 1 | bash 2 | -------------------------------------------------------------------------------- /garbage/mimi/version: -------------------------------------------------------------------------------- 1 | git 1 2 | -------------------------------------------------------------------------------- /garbage/tinywm/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | -------------------------------------------------------------------------------- /garbage/tinywm/version: -------------------------------------------------------------------------------- 1 | git 1 2 | -------------------------------------------------------------------------------- /gfx/atkmm/version: -------------------------------------------------------------------------------- 1 | 2.28.0 1 2 | -------------------------------------------------------------------------------- /gfx/cairomm/version: -------------------------------------------------------------------------------- 1 | 1.12.2 1 2 | -------------------------------------------------------------------------------- /gfx/gimp/version: -------------------------------------------------------------------------------- 1 | 2.99.4 1 2 | -------------------------------------------------------------------------------- /gfx/glibmm/version: -------------------------------------------------------------------------------- 1 | 2.64.2 1 2 | -------------------------------------------------------------------------------- /gfx/gtkmm/version: -------------------------------------------------------------------------------- 1 | 3.24.2 1 2 | -------------------------------------------------------------------------------- /gfx/inkscape/version: -------------------------------------------------------------------------------- 1 | 1.0 1 2 | -------------------------------------------------------------------------------- /gfx/libXpm/version: -------------------------------------------------------------------------------- 1 | 3.5.13 1 2 | -------------------------------------------------------------------------------- /gfx/libresprite/version: -------------------------------------------------------------------------------- 1 | git 1 2 | -------------------------------------------------------------------------------- /gfx/pangomm/version: -------------------------------------------------------------------------------- 1 | 2.42.1 1 2 | -------------------------------------------------------------------------------- /gfx/potrace/version: -------------------------------------------------------------------------------- 1 | 1.16 1 2 | -------------------------------------------------------------------------------- /java/fastjar/version: -------------------------------------------------------------------------------- 1 | 0.98 1 2 | -------------------------------------------------------------------------------- /java/gcc6-gcj/version: -------------------------------------------------------------------------------- 1 | 6.5.0 1 2 | -------------------------------------------------------------------------------- /java/libXp/version: -------------------------------------------------------------------------------- 1 | 1.0.3 1 2 | -------------------------------------------------------------------------------- /libs/fltk/version: -------------------------------------------------------------------------------- 1 | 1.3.5 1 2 | -------------------------------------------------------------------------------- /libs/glfw/version: -------------------------------------------------------------------------------- 1 | 3.3.2 1 2 | -------------------------------------------------------------------------------- /libs/hyphen/version: -------------------------------------------------------------------------------- 1 | 2.8.8 1 2 | -------------------------------------------------------------------------------- /libs/jansson/version: -------------------------------------------------------------------------------- 1 | 2.13.1 1 2 | -------------------------------------------------------------------------------- /libs/libXaw/version: -------------------------------------------------------------------------------- 1 | 1.0.13 1 2 | -------------------------------------------------------------------------------- /libs/libcdr/version: -------------------------------------------------------------------------------- 1 | 0.1.6 1 2 | -------------------------------------------------------------------------------- /libs/libgudev/version: -------------------------------------------------------------------------------- 1 | 233 1 2 | -------------------------------------------------------------------------------- /libs/libmspub/version: -------------------------------------------------------------------------------- 1 | 0.1.4 1 2 | -------------------------------------------------------------------------------- /libs/libqxp/version: -------------------------------------------------------------------------------- 1 | 0.0.2 1 2 | -------------------------------------------------------------------------------- /libs/libverto/version: -------------------------------------------------------------------------------- 1 | 0.3.1 1 2 | -------------------------------------------------------------------------------- /libs/libvisio/version: -------------------------------------------------------------------------------- 1 | 0.1.7 1 2 | -------------------------------------------------------------------------------- /libs/libwpd/version: -------------------------------------------------------------------------------- 1 | 0.10.3 1 2 | -------------------------------------------------------------------------------- /libs/libwpg/version: -------------------------------------------------------------------------------- 1 | 0.3.3 1 2 | -------------------------------------------------------------------------------- /libs/libxml2/version: -------------------------------------------------------------------------------- 1 | 2.9.10 2 2 | -------------------------------------------------------------------------------- /libs/libxslt/version: -------------------------------------------------------------------------------- 1 | 1.1.34 1 2 | -------------------------------------------------------------------------------- /libs/libzmf/version: -------------------------------------------------------------------------------- 1 | 0.0.2 1 2 | -------------------------------------------------------------------------------- /libs/raylib/version: -------------------------------------------------------------------------------- 1 | 3.0.0 1 2 | -------------------------------------------------------------------------------- /lxqt/liblxqt/version: -------------------------------------------------------------------------------- 1 | 0.15.0 1 2 | -------------------------------------------------------------------------------- /lxqt/libqtxdg/version: -------------------------------------------------------------------------------- 1 | 3.5.0 1 2 | -------------------------------------------------------------------------------- /lxqt/lxqt/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | -------------------------------------------------------------------------------- /lxqt/lxqt/version: -------------------------------------------------------------------------------- 1 | 0.15.0 1 2 | -------------------------------------------------------------------------------- /lxqt/upower/version: -------------------------------------------------------------------------------- 1 | 0.99.11 1 2 | -------------------------------------------------------------------------------- /lxqt/xmlto/version: -------------------------------------------------------------------------------- 1 | 0.0.28 1 2 | -------------------------------------------------------------------------------- /office/ledger/version: -------------------------------------------------------------------------------- 1 | 3.2.1 1 2 | -------------------------------------------------------------------------------- /science/R/version: -------------------------------------------------------------------------------- 1 | 4.0.2 1 2 | -------------------------------------------------------------------------------- /science/gd/version: -------------------------------------------------------------------------------- 1 | 2.2.5 1 2 | -------------------------------------------------------------------------------- /science/glpk/version: -------------------------------------------------------------------------------- 1 | 4.65 1 2 | -------------------------------------------------------------------------------- /video/dav1d/version: -------------------------------------------------------------------------------- 1 | 0.7.1 1 2 | -------------------------------------------------------------------------------- /video/speex/depends: -------------------------------------------------------------------------------- 1 | libogg 2 | -------------------------------------------------------------------------------- /video/speex/version: -------------------------------------------------------------------------------- 1 | 1.2.0 1 2 | -------------------------------------------------------------------------------- /extra/appstream/version: -------------------------------------------------------------------------------- 1 | 0.13.1 1 2 | -------------------------------------------------------------------------------- /extra/exiv2/depends: -------------------------------------------------------------------------------- 1 | expat 2 | zlib 3 | -------------------------------------------------------------------------------- /extra/goffice/version: -------------------------------------------------------------------------------- 1 | 0.10.48 1 2 | -------------------------------------------------------------------------------- /extra/libgsf/version: -------------------------------------------------------------------------------- 1 | 1.14.47 1 2 | -------------------------------------------------------------------------------- /extra/libmypaint/version: -------------------------------------------------------------------------------- 1 | 1.6.1 1 2 | -------------------------------------------------------------------------------- /extra/librsvg/version: -------------------------------------------------------------------------------- 1 | 2.48.9 1 2 | -------------------------------------------------------------------------------- /garbage/dmg2img/version: -------------------------------------------------------------------------------- 1 | 1.6.7 1 2 | -------------------------------------------------------------------------------- /garbage/testdisk/version: -------------------------------------------------------------------------------- 1 | 7.2 1 2 | -------------------------------------------------------------------------------- /garbage/tinyemu/version: -------------------------------------------------------------------------------- 1 | 20191221 1 2 | -------------------------------------------------------------------------------- /garbage/tiramisu/version: -------------------------------------------------------------------------------- 1 | git 1 2 | -------------------------------------------------------------------------------- /java/fastjar/depends: -------------------------------------------------------------------------------- 1 | zlib make 2 | -------------------------------------------------------------------------------- /java/lksctp-tools/version: -------------------------------------------------------------------------------- 1 | 1.0.18 1 2 | -------------------------------------------------------------------------------- /libs/gstreamer/version: -------------------------------------------------------------------------------- 1 | 1.16.2 1 2 | -------------------------------------------------------------------------------- /libs/libexecinfo/version: -------------------------------------------------------------------------------- 1 | 1.1 1 2 | -------------------------------------------------------------------------------- /libs/libfreehand/version: -------------------------------------------------------------------------------- 1 | 0.1.2 1 2 | -------------------------------------------------------------------------------- /libs/libkscreen/version: -------------------------------------------------------------------------------- 1 | 5.18.5 1 2 | -------------------------------------------------------------------------------- /libs/libpagemaker/version: -------------------------------------------------------------------------------- 1 | 0.0.4 1 2 | -------------------------------------------------------------------------------- /libs/librevenge/version: -------------------------------------------------------------------------------- 1 | 0.0.4 1 2 | -------------------------------------------------------------------------------- /libs/libsigc++/version: -------------------------------------------------------------------------------- 1 | 2.10.3 1 2 | -------------------------------------------------------------------------------- /libs/libxml2/depends: -------------------------------------------------------------------------------- 1 | xz 2 | zlib 3 | -------------------------------------------------------------------------------- /lxqt/dbus-glib/version: -------------------------------------------------------------------------------- 1 | 0.110 1 2 | -------------------------------------------------------------------------------- /lxqt/libfm-extra/version: -------------------------------------------------------------------------------- 1 | 1.3.1 1 2 | -------------------------------------------------------------------------------- /lxqt/libfm-qt/version: -------------------------------------------------------------------------------- 1 | 0.15.1 1 2 | -------------------------------------------------------------------------------- /lxqt/libsysstat/version: -------------------------------------------------------------------------------- 1 | 0.4.3 1 2 | -------------------------------------------------------------------------------- /lxqt/lximage-qt/version: -------------------------------------------------------------------------------- 1 | 0.15.0 1 2 | -------------------------------------------------------------------------------- /lxqt/lxmenu-data/version: -------------------------------------------------------------------------------- 1 | 0.1.5 2 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-about/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-about/version: -------------------------------------------------------------------------------- 1 | 0.15.0 1 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-admin/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-admin/version: -------------------------------------------------------------------------------- 1 | 0.15.0 1 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-archiver/version: -------------------------------------------------------------------------------- 1 | 0.2.0 1 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-config/version: -------------------------------------------------------------------------------- 1 | 0.15.0 1 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-panel/version: -------------------------------------------------------------------------------- 1 | 0.15.0 1 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-runner/version: -------------------------------------------------------------------------------- 1 | 0.15.0 1 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-session/version: -------------------------------------------------------------------------------- 1 | 0.15.0 1 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-sudo/version: -------------------------------------------------------------------------------- 1 | 0.15.0 1 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-themes/version: -------------------------------------------------------------------------------- 1 | 0.15.0 1 2 | -------------------------------------------------------------------------------- /lxqt/menu-cache/version: -------------------------------------------------------------------------------- 1 | 1.1.0 1 2 | -------------------------------------------------------------------------------- /lxqt/muparser/version: -------------------------------------------------------------------------------- 1 | 2.2.6.1 1 2 | -------------------------------------------------------------------------------- /lxqt/obconf-qt/version: -------------------------------------------------------------------------------- 1 | 0.15.0 1 2 | -------------------------------------------------------------------------------- /lxqt/pcmanfm-qt/version: -------------------------------------------------------------------------------- 1 | 0.15.1 1 2 | -------------------------------------------------------------------------------- /lxqt/qterminal/version: -------------------------------------------------------------------------------- 1 | 0.15.0 1 2 | -------------------------------------------------------------------------------- /lxqt/qtermwidget/version: -------------------------------------------------------------------------------- 1 | 0.15.0 1 2 | -------------------------------------------------------------------------------- /lxqt/xdg-user-dirs/version: -------------------------------------------------------------------------------- 1 | 0.17 1 2 | -------------------------------------------------------------------------------- /office/abiword/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/gnumeric/version: -------------------------------------------------------------------------------- 1 | 1.12.48 2 2 | -------------------------------------------------------------------------------- /office/wordgrinder/version: -------------------------------------------------------------------------------- 1 | 0.7.2 2 2 | -------------------------------------------------------------------------------- /science/gnuplot/version: -------------------------------------------------------------------------------- 1 | 5.2.8 1 2 | -------------------------------------------------------------------------------- /science/lapack/version: -------------------------------------------------------------------------------- 1 | 3.9.0 1 2 | -------------------------------------------------------------------------------- /science/octave/version: -------------------------------------------------------------------------------- 1 | 5.2.0 1 2 | -------------------------------------------------------------------------------- /science/qhull/version: -------------------------------------------------------------------------------- 1 | 2020.1 1 2 | -------------------------------------------------------------------------------- /video/handbrake/version: -------------------------------------------------------------------------------- 1 | 1.3.3 1 2 | -------------------------------------------------------------------------------- /video/libbluray/version: -------------------------------------------------------------------------------- 1 | 1.2.0 1 2 | -------------------------------------------------------------------------------- /video/libdvdcss/version: -------------------------------------------------------------------------------- 1 | 1.4.2 1 2 | -------------------------------------------------------------------------------- /video/libdvdnav/version: -------------------------------------------------------------------------------- 1 | 6.1.0 1 2 | -------------------------------------------------------------------------------- /video/libdvdread/depends: -------------------------------------------------------------------------------- 1 | libdvdcss 2 | -------------------------------------------------------------------------------- /video/libdvdread/version: -------------------------------------------------------------------------------- 1 | 6.1.1 1 2 | -------------------------------------------------------------------------------- /extra/appstream-glib/version: -------------------------------------------------------------------------------- 1 | 0.7.18 1 2 | -------------------------------------------------------------------------------- /extra/mypaint-brushes/version: -------------------------------------------------------------------------------- 1 | 2.0.2 1 2 | -------------------------------------------------------------------------------- /extra/poppler-data/version: -------------------------------------------------------------------------------- 1 | 0.4.10 1 2 | -------------------------------------------------------------------------------- /garbage/android-tools/version: -------------------------------------------------------------------------------- 1 | 29.0.6 1 2 | -------------------------------------------------------------------------------- /garbage/tinyemu/depends: -------------------------------------------------------------------------------- 1 | curl 2 | sdl 3 | -------------------------------------------------------------------------------- /gfx/double-conversion/version: -------------------------------------------------------------------------------- 1 | 3.1.5 1 2 | -------------------------------------------------------------------------------- /gfx/jp2a/depends: -------------------------------------------------------------------------------- 1 | curl 2 | libjpeg-turbo 3 | -------------------------------------------------------------------------------- /libs/gst-plugins-base/version: -------------------------------------------------------------------------------- 1 | 1.16.2 1 2 | -------------------------------------------------------------------------------- /libs/gst-transcoder/version: -------------------------------------------------------------------------------- 1 | 1.16.0 1 2 | -------------------------------------------------------------------------------- /libs/libwpd/depends: -------------------------------------------------------------------------------- 1 | librevenge 2 | zlib 3 | -------------------------------------------------------------------------------- /lxqt/libdbusmenu-qt/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-build-tools/version: -------------------------------------------------------------------------------- 1 | 0.7.0 1 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-config/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-globalkeys/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-globalkeys/version: -------------------------------------------------------------------------------- 1 | 0.15.0 1 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-policykit/version: -------------------------------------------------------------------------------- 1 | 0.15.0 1 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-qtplugin/version: -------------------------------------------------------------------------------- 1 | 0.15.0 1 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-themes/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | -------------------------------------------------------------------------------- /lxqt/qtermwidget/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | -------------------------------------------------------------------------------- /python/python-cairo/version: -------------------------------------------------------------------------------- 1 | 1.19.1 1 2 | -------------------------------------------------------------------------------- /python/python-gobject/version: -------------------------------------------------------------------------------- 1 | 3.36.1 1 2 | -------------------------------------------------------------------------------- /python/python-telegram/depends: -------------------------------------------------------------------------------- 1 | python 2 | -------------------------------------------------------------------------------- /python/python-telegram/version: -------------------------------------------------------------------------------- 1 | 0.12.0 1 2 | -------------------------------------------------------------------------------- /themes/arc-theme/version: -------------------------------------------------------------------------------- 1 | 20200513 1 2 | -------------------------------------------------------------------------------- /extra/adwaita-icon-theme/version: -------------------------------------------------------------------------------- 1 | 3.38.0 1 2 | -------------------------------------------------------------------------------- /extra/gobject-introspection/version: -------------------------------------------------------------------------------- 1 | 1.66.1 1 2 | -------------------------------------------------------------------------------- /garbage/libtorrent-rasterbar/version: -------------------------------------------------------------------------------- 1 | 1.2.5 1 2 | -------------------------------------------------------------------------------- /libs/gst-editing-services/version: -------------------------------------------------------------------------------- 1 | 1.16.2 1 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-notificationd/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-notificationd/version: -------------------------------------------------------------------------------- 1 | 0.15.0 1 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-openssh-askpass/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-openssh-askpass/version: -------------------------------------------------------------------------------- 1 | 0.15.0 1 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-powermanagement/version: -------------------------------------------------------------------------------- 1 | 0.15.0 1 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-sudo/depends: -------------------------------------------------------------------------------- 1 | sudo 2 | cmake make 3 | -------------------------------------------------------------------------------- /lxqt/menu-cache/depends: -------------------------------------------------------------------------------- 1 | libfm-extra make 2 | -------------------------------------------------------------------------------- /lxqt/xdg-user-dirs/depends: -------------------------------------------------------------------------------- 1 | libXslt make 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-applix/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-bmp/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-collab/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-eml/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-epub/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-garble/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-gdict/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-gimp/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-google/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-hancom/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-hrtext/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-iscii/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-kword/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-latex/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-mht/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-mif/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-opml/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-paint/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-pdb/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-pdf/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-s5/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-sdw/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-t602/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-wml/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-xslfo/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /python/python-gstreamer/version: -------------------------------------------------------------------------------- 1 | 1.16.2 1 2 | -------------------------------------------------------------------------------- /themes/papirus-icon-theme/version: -------------------------------------------------------------------------------- 1 | 20200602 1 2 | -------------------------------------------------------------------------------- /garbage/tiramisu/depends: -------------------------------------------------------------------------------- 1 | glib 2 | libffi 3 | zlib 4 | -------------------------------------------------------------------------------- /libs/libmspub/depends: -------------------------------------------------------------------------------- 1 | icu 2 | librevenge 3 | zlib 4 | -------------------------------------------------------------------------------- /libs/libpagemaker/depends: -------------------------------------------------------------------------------- 1 | librevenge 2 | zlib 3 | -------------------------------------------------------------------------------- /libs/libqxp/depends: -------------------------------------------------------------------------------- 1 | icu 2 | librevenge 3 | zlib 4 | -------------------------------------------------------------------------------- /libs/librevenge/depends: -------------------------------------------------------------------------------- 1 | cppunit make 2 | zlib 3 | -------------------------------------------------------------------------------- /lxqt/lxqt-build-tools/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | qt5 3 | -------------------------------------------------------------------------------- /office/abiword-plugin-babelfish/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-clarisworks/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-command/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-docbook/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-mswrite/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-openwriter/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-openxml/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-urldict/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-wikipedia/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /python/python-cairo/depends: -------------------------------------------------------------------------------- 1 | cairo 2 | python make 3 | -------------------------------------------------------------------------------- /video/libdvdnav/depends: -------------------------------------------------------------------------------- 1 | libdvdcss 2 | libdvdread 3 | -------------------------------------------------------------------------------- /extra/libmypaint/depends: -------------------------------------------------------------------------------- 1 | glib 2 | json-c 3 | libffi 4 | -------------------------------------------------------------------------------- /extra/librsvg/depends: -------------------------------------------------------------------------------- 1 | pkgconf make 2 | rust make 3 | -------------------------------------------------------------------------------- /libs/libfreehand/depends: -------------------------------------------------------------------------------- 1 | lcms 2 | librevenge 3 | zlib 4 | -------------------------------------------------------------------------------- /libs/libkscreen/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | kwayland make 3 | -------------------------------------------------------------------------------- /libs/libwpg/depends: -------------------------------------------------------------------------------- 1 | librevenge 2 | libwpd 3 | zlib 4 | -------------------------------------------------------------------------------- /lxqt/libdbusmenu-qt/version: -------------------------------------------------------------------------------- 1 | 0.9.3+16.04.20160218 1 2 | -------------------------------------------------------------------------------- /lxqt/libfm-extra/depends: -------------------------------------------------------------------------------- 1 | glib 2 | intltool-fake make 3 | -------------------------------------------------------------------------------- /lxqt/libfm-qt/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | menu-cache make 3 | -------------------------------------------------------------------------------- /lxqt/lximage-qt/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | libfm-qt make 3 | -------------------------------------------------------------------------------- /lxqt/lxqt-runner/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | muparser make 3 | -------------------------------------------------------------------------------- /lxqt/lxqt-session/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | xdg-user-dirs 3 | -------------------------------------------------------------------------------- /lxqt/obconf-qt/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | openbox make 3 | -------------------------------------------------------------------------------- /lxqt/qterminal/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | qtermwidget make 3 | -------------------------------------------------------------------------------- /office/abiword-plugin-freetranslation/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-loadbindings/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-passepartout/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-presentation/version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 2 | -------------------------------------------------------------------------------- /office/ledger/depends: -------------------------------------------------------------------------------- 1 | boost 2 | cmake make 3 | mpfr 4 | -------------------------------------------------------------------------------- /gfx/glibmm/depends: -------------------------------------------------------------------------------- 1 | glib 2 | libffi 3 | libsigc++ 4 | zlib 5 | -------------------------------------------------------------------------------- /gfx/gsl/sources: -------------------------------------------------------------------------------- 1 | https://ftp.gnu.org/gnu/gsl/gsl-2.6.tar.gz 2 | -------------------------------------------------------------------------------- /libs/gstreamer/depends: -------------------------------------------------------------------------------- 1 | bison make 2 | glib 3 | meson make 4 | -------------------------------------------------------------------------------- /libs/libcdr/depends: -------------------------------------------------------------------------------- 1 | icu 2 | lcms 3 | librevenge 4 | zlib 5 | -------------------------------------------------------------------------------- /libs/libzmf/depends: -------------------------------------------------------------------------------- 1 | icu 2 | libpng 3 | librevenge 4 | zlib 5 | -------------------------------------------------------------------------------- /lxqt/lxqt-archiver/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | libfm-qt make 3 | -------------------------------------------------------------------------------- /extra/mypaint-brushes/depends: -------------------------------------------------------------------------------- 1 | autoconf make 2 | automake make 3 | -------------------------------------------------------------------------------- /garbage/mimi/sources: -------------------------------------------------------------------------------- 1 | git+https://github.com/march-linux/mimi.git 2 | -------------------------------------------------------------------------------- /garbage/tinywm/sources: -------------------------------------------------------------------------------- 1 | git+https://github.com/mackstann/tinywm 2 | -------------------------------------------------------------------------------- /garbage/tiramisu/sources: -------------------------------------------------------------------------------- 1 | git+https://github.com/Sweets/tiramisu 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-qtplugin/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | libdbusmenu-qt make 3 | -------------------------------------------------------------------------------- /lxqt/pcmanfm-qt/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | libfm-qt make 3 | qt5 4 | -------------------------------------------------------------------------------- /extra/gexiv2/depends: -------------------------------------------------------------------------------- 1 | exiv2 2 | expat 3 | glib 4 | libffi 5 | zlib 6 | -------------------------------------------------------------------------------- /garbage/android-tools/depends: -------------------------------------------------------------------------------- 1 | eudev 2 | libusb 3 | pcre2 4 | zlib 5 | -------------------------------------------------------------------------------- /gfx/atkmm/depends: -------------------------------------------------------------------------------- 1 | atk 2 | glib 3 | glibmm 4 | libffi 5 | libsigc++ 6 | -------------------------------------------------------------------------------- /gfx/grafx2/depends: -------------------------------------------------------------------------------- 1 | fontconfig 2 | lua 3 | sdl2-image 4 | sdl2-ttf 5 | -------------------------------------------------------------------------------- /gfx/jp2a/sources: -------------------------------------------------------------------------------- 1 | https://github.com/Talinx/jp2a/archive/v1.0.9.tar.gz 2 | -------------------------------------------------------------------------------- /libs/glfw/sources: -------------------------------------------------------------------------------- 1 | https://github.com/glfw/glfw/archive/3.3.2.tar.gz 2 | -------------------------------------------------------------------------------- /libs/libvisio/depends: -------------------------------------------------------------------------------- 1 | icu 2 | librevenge 3 | libxml2 4 | xz 5 | zlib 6 | -------------------------------------------------------------------------------- /libs/libxslt/sources: -------------------------------------------------------------------------------- 1 | http://xmlsoft.org/sources/libxslt-1.1.34.tar.gz 2 | -------------------------------------------------------------------------------- /lxqt/upower/depends: -------------------------------------------------------------------------------- 1 | eudev 2 | glib 3 | libffi 4 | libgudev 5 | libusb 6 | -------------------------------------------------------------------------------- /science/glpk/sources: -------------------------------------------------------------------------------- 1 | https://ftp.gnu.org/gnu/glpk/glpk-4.65.tar.gz 2 | -------------------------------------------------------------------------------- /extra/babl/sources: -------------------------------------------------------------------------------- 1 | https://ftp.gimp.org/pub/babl/0.1/babl-0.1.84.tar.xz 2 | -------------------------------------------------------------------------------- /extra/exiv2/sources: -------------------------------------------------------------------------------- 1 | https://exiv2.org/builds/exiv2-0.27.3-Source.tar.gz 2 | -------------------------------------------------------------------------------- /extra/yaml/sources: -------------------------------------------------------------------------------- 1 | http://pyyaml.org/download/libyaml/yaml-0.2.5.tar.gz 2 | -------------------------------------------------------------------------------- /garbage/btfs/sources: -------------------------------------------------------------------------------- 1 | https://github.com/johang/btfs/archive/v2.20.tar.gz 2 | -------------------------------------------------------------------------------- /garbage/dmg2img/depends: -------------------------------------------------------------------------------- 1 | bzip2 make 2 | libressl make 3 | zlib make 4 | -------------------------------------------------------------------------------- /garbage/readme.md: -------------------------------------------------------------------------------- 1 | # kiss-garbage 2 | 3 | ![Screenshot](screenshot.png) 4 | -------------------------------------------------------------------------------- /garbage/tiramisu/checksums: -------------------------------------------------------------------------------- 1 | git git+https://github.com/Sweets/tiramisu 2 | -------------------------------------------------------------------------------- /gfx/libresprite/sources: -------------------------------------------------------------------------------- 1 | git+https://github.com/LibreSprite/LibreSprite.git 2 | -------------------------------------------------------------------------------- /libs/fltk/sources: -------------------------------------------------------------------------------- 1 | http://fltk.org/pub/fltk/1.3.5/fltk-1.3.5-source.tar.gz 2 | -------------------------------------------------------------------------------- /libs/libxml2/sources: -------------------------------------------------------------------------------- 1 | https://fossies.org/linux/www/libxml2-2.9.10.tar.gz 2 | -------------------------------------------------------------------------------- /libs/raylib/sources: -------------------------------------------------------------------------------- 1 | https://github.com/raysan5/raylib/archive/3.0.0.tar.gz 2 | -------------------------------------------------------------------------------- /lxqt/libqtxdg/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | lxqt-build-tools 3 | kwindowsystem 4 | -------------------------------------------------------------------------------- /lxqt/libsysstat/depends: -------------------------------------------------------------------------------- 1 | lxqt-build-tools make 2 | qt5-tools make 3 | -------------------------------------------------------------------------------- /lxqt/xmlto/sources: -------------------------------------------------------------------------------- 1 | https://releases.pagure.org/xmlto/xmlto-0.0.28.tar.bz2 2 | -------------------------------------------------------------------------------- /science/octave/sources: -------------------------------------------------------------------------------- 1 | https://ftp.gnu.org/gnu/octave/octave-5.2.0.tar.gz 2 | -------------------------------------------------------------------------------- /science/qhull/sources: -------------------------------------------------------------------------------- 1 | https://github.com/qhull/qhull/archive/2020.1.tar.gz 2 | -------------------------------------------------------------------------------- /extra/gegl/sources: -------------------------------------------------------------------------------- 1 | https://download.gimp.org/pub/gegl/0.4/gegl-0.4.28.tar.xz 2 | -------------------------------------------------------------------------------- /extra/wv/sources: -------------------------------------------------------------------------------- 1 | https://www.abisource.com/downloads/wv/1.2.9/wv-1.2.9.tar.gz 2 | -------------------------------------------------------------------------------- /garbage/testdisk/sources: -------------------------------------------------------------------------------- 1 | https://www.cgsecurity.org/testdisk-7.2-WIP.tar.bz2 2 | -------------------------------------------------------------------------------- /garbage/tinyemu/sources: -------------------------------------------------------------------------------- 1 | https://bellard.org/tinyemu/tinyemu-2019-12-21.tar.gz 2 | -------------------------------------------------------------------------------- /gfx/cairomm/sources: -------------------------------------------------------------------------------- 1 | http://www.cairographics.org/releases/cairomm-1.12.2.tar.gz 2 | -------------------------------------------------------------------------------- /gfx/gdl/sources: -------------------------------------------------------------------------------- 1 | https://download.gnome.org/sources/gdl/3.34/gdl-3.34.0.tar.xz 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-policykit/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | liblxqt make 3 | polkit-qt-1 make 4 | -------------------------------------------------------------------------------- /lxqt/lxqt-powermanagement/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | solid make 3 | kidletime make 4 | -------------------------------------------------------------------------------- /office/ledger/sources: -------------------------------------------------------------------------------- 1 | https://github.com/ledger/ledger/archive/v3.2.1.tar.gz 2 | -------------------------------------------------------------------------------- /extra/wv/checksums: -------------------------------------------------------------------------------- 1 | 4c730d3b325c0785450dd3a043eeb53e1518598c4f41f155558385dd2635c19d 2 | -------------------------------------------------------------------------------- /gfx/atkmm/checksums: -------------------------------------------------------------------------------- 1 | 4c4cfc917fd42d3879ce997b463428d6982affa0fb660cafcc0bc2d9afcedd3a 2 | -------------------------------------------------------------------------------- /gfx/atkmm/sources: -------------------------------------------------------------------------------- 1 | https://download.gnome.org/sources/atkmm/2.28/atkmm-2.28.0.tar.xz 2 | -------------------------------------------------------------------------------- /gfx/gdl/checksums: -------------------------------------------------------------------------------- 1 | 858b30f0cdce4c4cb3e8365a7d54ce57c388beff38ea583be5449bc78dda8d02 2 | -------------------------------------------------------------------------------- /gfx/gsl/checksums: -------------------------------------------------------------------------------- 1 | b782339fc7a38fe17689cb39966c4d821236c28018b6593ddb6fd59ee40786a8 2 | -------------------------------------------------------------------------------- /gfx/gtkmm/checksums: -------------------------------------------------------------------------------- 1 | 6d71091bcd1863133460d4188d04102810e9123de19706fb656b7bb915b4adc3 2 | -------------------------------------------------------------------------------- /gfx/gtkmm/sources: -------------------------------------------------------------------------------- 1 | https://download.gnome.org/sources/gtkmm/3.24/gtkmm-3.24.2.tar.xz 2 | -------------------------------------------------------------------------------- /gfx/jp2a/checksums: -------------------------------------------------------------------------------- 1 | 180790d4dae5dc5ac4b028531dc3905a1b1aa39a6a83ce145420026223d37b88 2 | -------------------------------------------------------------------------------- /gfx/libXpm/sources: -------------------------------------------------------------------------------- 1 | https://www.x.org/releases/individual/lib/libXpm-3.5.13.tar.bz2 2 | -------------------------------------------------------------------------------- /gfx/potrace/sources: -------------------------------------------------------------------------------- 1 | http://potrace.sourceforge.net/download/1.16/potrace-1.16.tar.gz 2 | -------------------------------------------------------------------------------- /java/libXp/sources: -------------------------------------------------------------------------------- 1 | https://www.x.org/releases/individual/lib/libXp-1.0.3.tar.bz2 2 | -------------------------------------------------------------------------------- /libs/fltk/checksums: -------------------------------------------------------------------------------- 1 | 8729b2a055f38c1636ba20f749de0853384c1d3e9d1a6b8d4d1305143e115702 2 | -------------------------------------------------------------------------------- /libs/glfw/checksums: -------------------------------------------------------------------------------- 1 | 98768e12e615fbe9f3386f5bbfeb91b5a3b45a8c4c77159cef06b1f6ff749537 2 | -------------------------------------------------------------------------------- /libs/hyphen/sources: -------------------------------------------------------------------------------- 1 | https://downloads.sourceforge.net/hunspell/hyphen-2.8.8.tar.gz 2 | -------------------------------------------------------------------------------- /libs/jansson/sources: -------------------------------------------------------------------------------- 1 | http://www.digip.org/jansson/releases/jansson-2.13.1.tar.bz2 2 | -------------------------------------------------------------------------------- /libs/libXaw/sources: -------------------------------------------------------------------------------- 1 | https://www.x.org/releases/individual/lib/libXaw-1.0.13.tar.bz2 2 | -------------------------------------------------------------------------------- /libs/libcdr/sources: -------------------------------------------------------------------------------- 1 | https://dev-www.libreoffice.org/src/libcdr/libcdr-0.1.6.tar.xz 2 | -------------------------------------------------------------------------------- /libs/libqxp/sources: -------------------------------------------------------------------------------- 1 | https://dev-www.libreoffice.org/src/libqxp/libqxp-0.0.2.tar.xz 2 | -------------------------------------------------------------------------------- /libs/libverto/sources: -------------------------------------------------------------------------------- 1 | https://github.com/npmccallum/libverto/archive/0.3.1.tar.gz 2 | -------------------------------------------------------------------------------- /libs/libzmf/sources: -------------------------------------------------------------------------------- 1 | https://dev-www.libreoffice.org/src/libzmf/libzmf-0.0.2.tar.xz 2 | -------------------------------------------------------------------------------- /lxqt/dbus-glib/depends: -------------------------------------------------------------------------------- 1 | dbus 2 | expat 3 | glib 4 | libexecinfo 5 | libffi 6 | zlib 7 | -------------------------------------------------------------------------------- /video/speex/sources: -------------------------------------------------------------------------------- 1 | http://downloads.us.xiph.org/releases/speex/speex-1.2.0.tar.gz 2 | -------------------------------------------------------------------------------- /extra/appstream/depends: -------------------------------------------------------------------------------- 1 | glib 2 | libXslt make 3 | libsoup 4 | libxml2 5 | lmdb 6 | yaml 7 | -------------------------------------------------------------------------------- /extra/babl/checksums: -------------------------------------------------------------------------------- 1 | e7e38b8441f77feb9dc8231cb434a86190a21f2f3692c281457e99d35e9c34ea 2 | -------------------------------------------------------------------------------- /extra/exiv2/checksums: -------------------------------------------------------------------------------- 1 | a79f5613812aa21755d578a297874fb59a85101e793edc64ec2c6bd994e3e778 2 | -------------------------------------------------------------------------------- /extra/gegl/checksums: -------------------------------------------------------------------------------- 1 | 1d110d8577d54cca3b34239315bd37c57ccb27dd4355655074a2d2b3fd897900 2 | -------------------------------------------------------------------------------- /extra/gexiv2/checksums: -------------------------------------------------------------------------------- 1 | 8aeafd59653ea88f6b78cb03780ee9fd61a2f993070c5f0d0976bed93ac2bd77 2 | -------------------------------------------------------------------------------- /extra/gexiv2/sources: -------------------------------------------------------------------------------- 1 | https://download.gnome.org/sources/gexiv2/0.12/gexiv2-0.12.1.tar.xz 2 | -------------------------------------------------------------------------------- /extra/libgsf/checksums: -------------------------------------------------------------------------------- 1 | d188ebd3787b5375a8fd38ee6f761a2007de5e98fa0cf5623f271daa67ba774d 2 | -------------------------------------------------------------------------------- /extra/libgsf/sources: -------------------------------------------------------------------------------- 1 | https://download.gnome.org/sources/libgsf/1.14/libgsf-1.14.47.tar.xz 2 | -------------------------------------------------------------------------------- /extra/librsvg/checksums: -------------------------------------------------------------------------------- 1 | 3e7d78ba6a878799b0cf951004b9763a7f35d49ea845b89036d71fe89e28bd9c 2 | -------------------------------------------------------------------------------- /extra/poppler-data/sources: -------------------------------------------------------------------------------- 1 | https://poppler.freedesktop.org/poppler-data-0.4.10.tar.gz 2 | -------------------------------------------------------------------------------- /extra/yaml/checksums: -------------------------------------------------------------------------------- 1 | c642ae9b75fee120b2d96c712538bd2cf283228d2337df2cf2988e3c02678ef4 2 | -------------------------------------------------------------------------------- /garbage/btfs/checksums: -------------------------------------------------------------------------------- 1 | ab85d10407d210c367dc5a0db6aa9e8620ebbb819c58da783ca343dfa8577441 2 | -------------------------------------------------------------------------------- /garbage/mimi/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | install -Dm755 xdg-open "$1/usr/bin/xdg-open" 4 | -------------------------------------------------------------------------------- /gfx/cairomm/checksums: -------------------------------------------------------------------------------- 1 | 45c47fd4d0aa77464a75cdca011143fea3ef795c4753f6e860057da5fb8bd599 2 | -------------------------------------------------------------------------------- /gfx/glibmm/checksums: -------------------------------------------------------------------------------- 1 | a75282e58d556d9b2bb44262b6f5fb76c824ac46a25a06f527108bec86b8d4ec 2 | -------------------------------------------------------------------------------- /gfx/glibmm/sources: -------------------------------------------------------------------------------- 1 | https://download.gnome.org/sources/glibmm/2.64/glibmm-2.64.2.tar.xz 2 | -------------------------------------------------------------------------------- /gfx/libXpm/checksums: -------------------------------------------------------------------------------- 1 | 9cd1da57588b6cb71450eff2273ef6b657537a9ac4d02d0014228845b935ac25 2 | -------------------------------------------------------------------------------- /gfx/libresprite/depends: -------------------------------------------------------------------------------- 1 | curl 2 | giflib 3 | libpng 4 | libwebp 5 | openjpeg2 6 | pixman 7 | -------------------------------------------------------------------------------- /gfx/pangomm/checksums: -------------------------------------------------------------------------------- 1 | 14bf04939930870d5cfa96860ed953ad2ce07c3fd8713add4a1bfe585589f40f 2 | -------------------------------------------------------------------------------- /gfx/pangomm/sources: -------------------------------------------------------------------------------- 1 | https://download.gnome.org/sources/pangomm/2.42/pangomm-2.42.1.tar.xz 2 | -------------------------------------------------------------------------------- /gfx/potrace/checksums: -------------------------------------------------------------------------------- 1 | be8248a17dedd6ccbaab2fcc45835bb0502d062e40fbded3bc56028ce5eb7acc 2 | -------------------------------------------------------------------------------- /java/libXp/checksums: -------------------------------------------------------------------------------- 1 | 7f360c9905849c3587d48efc0f0ecbc852c19f61a52b18530d6b005cb9148c57 2 | -------------------------------------------------------------------------------- /java/lksctp-tools/sources: -------------------------------------------------------------------------------- 1 | https://github.com/sctp/lksctp-tools/archive/v1.0.18.tar.gz 2 | -------------------------------------------------------------------------------- /libs/gstreamer/checksums: -------------------------------------------------------------------------------- 1 | e3f044246783fd685439647373fa13ba14f7ab0b346eadd06437092f8419e94e 2 | -------------------------------------------------------------------------------- /libs/hyphen/checksums: -------------------------------------------------------------------------------- 1 | 304636d4eccd81a14b6914d07b84c79ebb815288c76fe027b9ebff6ff24d5705 2 | -------------------------------------------------------------------------------- /libs/jansson/checksums: -------------------------------------------------------------------------------- 1 | ee90a0f879d2b7b7159124ff22b937a2a9a8c36d3bb65d1da7dd3f04370a10bd 2 | -------------------------------------------------------------------------------- /libs/libXaw/checksums: -------------------------------------------------------------------------------- 1 | 8ef8067312571292ccc2bbe94c41109dcf022ea5a4ec71656a83d8cce9edb0cd 2 | -------------------------------------------------------------------------------- /libs/libcdr/checksums: -------------------------------------------------------------------------------- 1 | 01cd00b04a030977e544433c2d127c997205332cd9b8e35ec0ee17110da7f861 2 | -------------------------------------------------------------------------------- /libs/libgudev/checksums: -------------------------------------------------------------------------------- 1 | 587c4970eb23f4e2deee2cb1fb7838c94a78c578f41ce12cac0a3f4a80dabb03 2 | -------------------------------------------------------------------------------- /libs/libgudev/sources: -------------------------------------------------------------------------------- 1 | https://download.gnome.org/sources/libgudev/233/libgudev-233.tar.xz 2 | -------------------------------------------------------------------------------- /libs/libqxp/checksums: -------------------------------------------------------------------------------- 1 | e137b6b110120a52c98edd02ebdc4095ee08d0d5295a94316a981750095a945c 2 | -------------------------------------------------------------------------------- /libs/libsigc++/checksums: -------------------------------------------------------------------------------- 1 | 0b68dfc6313c6cc90ac989c6d722a1bf0585ad13846e79746aa87cb265904786 2 | -------------------------------------------------------------------------------- /libs/libverto/checksums: -------------------------------------------------------------------------------- 1 | 02c7e679577ae7608ed35fe740bec2ef8c58142344cef247f2797ef788d41adc 2 | -------------------------------------------------------------------------------- /libs/libvisio/checksums: -------------------------------------------------------------------------------- 1 | 8faf8df870cb27b09a787a1959d6c646faa44d0d8ab151883df408b7166bea4c 2 | -------------------------------------------------------------------------------- /libs/libvisio/sources: -------------------------------------------------------------------------------- 1 | https://dev-www.libreoffice.org/src/libvisio/libvisio-0.1.7.tar.xz 2 | -------------------------------------------------------------------------------- /libs/libwpd/checksums: -------------------------------------------------------------------------------- 1 | 2369a584d19991145f717cc9dc0e0bed4ca12f678dc671023623674ebd70fc54 2 | -------------------------------------------------------------------------------- /libs/libwpg/checksums: -------------------------------------------------------------------------------- 1 | afb38dbf6094e16f3f3cf4f92f43ff470b55a1073947c3d5791b6600c9a3b398 2 | -------------------------------------------------------------------------------- /libs/libxml2/checksums: -------------------------------------------------------------------------------- 1 | aafee193ffb8fe0c82d4afef6ef91972cbaf5feea100edc2f262750611b4be1f 2 | -------------------------------------------------------------------------------- /libs/libxslt/checksums: -------------------------------------------------------------------------------- 1 | 98b1bd46d6792925ad2dfe9a87452ea2adebf69dcb9919ffd55bf926a7f93f7f 2 | -------------------------------------------------------------------------------- /libs/libxslt/depends: -------------------------------------------------------------------------------- 1 | libXslt 2 | libgcrypt 3 | libgpg-error 4 | libxml2 5 | xz 6 | zlib 7 | -------------------------------------------------------------------------------- /libs/libzmf/checksums: -------------------------------------------------------------------------------- 1 | 27051a30cb057fdb5d5de65a1f165c7153dc76e27fe62251cbb86639eb2caf22 2 | -------------------------------------------------------------------------------- /libs/raylib/checksums: -------------------------------------------------------------------------------- 1 | 164d1cc1710bb8e711a495e84cc585681b30098948d67d482e11dc37d2054eab 2 | -------------------------------------------------------------------------------- /lxqt/dbus-glib/checksums: -------------------------------------------------------------------------------- 1 | 7ce4760cf66c69148f6bd6c92feaabb8812dee30846b24cd0f7395c436d7e825 2 | -------------------------------------------------------------------------------- /lxqt/libfm-qt/checksums: -------------------------------------------------------------------------------- 1 | 7a6793672114735a67b6a65687922c48f6e9633430e6aba70ba386532262930c 2 | -------------------------------------------------------------------------------- /lxqt/liblxqt/checksums: -------------------------------------------------------------------------------- 1 | 48e72ed15e7ac0badbd132d17ff2c9d95f2c9652a807dfe1d3f4ff00c8b7cb44 2 | -------------------------------------------------------------------------------- /lxqt/libqtxdg/checksums: -------------------------------------------------------------------------------- 1 | 41a99b36302f5391321ed1469a05dcba9033778fb27afca03ce320fa6ee4553c 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-sudo/checksums: -------------------------------------------------------------------------------- 1 | bc148b2aa80c3dc6fea200a848e25b5c0684295a70f876931f11ffd168fd8fec 2 | -------------------------------------------------------------------------------- /lxqt/muparser/checksums: -------------------------------------------------------------------------------- 1 | d2562853d972b6ddb07af47ce8a1cdeeb8bb3fa9e8da308746de391db67897b3 2 | -------------------------------------------------------------------------------- /lxqt/muparser/sources: -------------------------------------------------------------------------------- 1 | https://github.com/beltoforion/muparser/archive/v2.2.6.1.tar.gz 2 | -------------------------------------------------------------------------------- /lxqt/obconf-qt/checksums: -------------------------------------------------------------------------------- 1 | d8c05ce9d1497f1aaec903874ef6f8bb4a35c530e59ccccc71ac3f488a179bed 2 | -------------------------------------------------------------------------------- /lxqt/qterminal/checksums: -------------------------------------------------------------------------------- 1 | 557f74a946d009bb6e598c5d0c6de9356cda325f674876a457874c7525affd64 2 | -------------------------------------------------------------------------------- /lxqt/xmlto/checksums: -------------------------------------------------------------------------------- 1 | 1130df3a7957eb9f6f0d29e4aa1c75732a7dfb6d639be013859b5c7ec5421276 2 | -------------------------------------------------------------------------------- /office/abiword/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/ledger/checksums: -------------------------------------------------------------------------------- 1 | 92bf09bc385b171987f456fe3ee9fa998ed5e40b97b3acdd562b663aa364384a 2 | -------------------------------------------------------------------------------- /python/python-gstreamer/depends: -------------------------------------------------------------------------------- 1 | glib 2 | gstreamer 3 | libexecinfo 4 | libffi 5 | python 6 | -------------------------------------------------------------------------------- /science/glpk/checksums: -------------------------------------------------------------------------------- 1 | 4281e29b628864dfe48d393a7bedd781e5b475387c20d8b0158f329994721a10 2 | -------------------------------------------------------------------------------- /science/lapack/checksums: -------------------------------------------------------------------------------- 1 | 106087f1bb5f46afdfba7f569d0cbe23dacb9a07cd24733765a0e89dbe1ad573 2 | -------------------------------------------------------------------------------- /science/lapack/sources: -------------------------------------------------------------------------------- 1 | https://github.com/Reference-LAPACK/lapack/archive/v3.9.0.tar.gz 2 | -------------------------------------------------------------------------------- /science/octave/checksums: -------------------------------------------------------------------------------- 1 | 2fea62b3c78d6f38e9451da8a4d26023840725977dffee5250d3d180f56595e1 2 | -------------------------------------------------------------------------------- /science/qhull/checksums: -------------------------------------------------------------------------------- 1 | 0258bbf5de447e3d6b3968c5a7b51c08ca5d98f11f94f86621ed3e7c98365b8d 2 | -------------------------------------------------------------------------------- /video/dav1d/checksums: -------------------------------------------------------------------------------- 1 | 9eac4f50089f54a9f562827bda4a21187d68c01d8b20055eef1d7efca9f84cf8 2 | -------------------------------------------------------------------------------- /video/speex/checksums: -------------------------------------------------------------------------------- 1 | eaae8af0ac742dc7d542c9439ac72f1f385ce838392dc849cae4536af9210094 2 | -------------------------------------------------------------------------------- /extra/gobject-introspection/depends: -------------------------------------------------------------------------------- 1 | bison make 2 | glib 3 | meson make 4 | samurai make 5 | -------------------------------------------------------------------------------- /extra/libmypaint/checksums: -------------------------------------------------------------------------------- 1 | 741754f293f6b7668f941506da07cd7725629a793108bb31633fb6c3eae5315f 2 | -------------------------------------------------------------------------------- /extra/librsvg/sources: -------------------------------------------------------------------------------- 1 | https://download.gnome.org/sources/librsvg/2.48/librsvg-2.48.9.tar.xz 2 | -------------------------------------------------------------------------------- /extra/poppler-data/checksums: -------------------------------------------------------------------------------- 1 | 6e2fcef66ec8c44625f94292ccf8af9f1d918b410d5aa69c274ce67387967b30 2 | -------------------------------------------------------------------------------- /garbage/testdisk/checksums: -------------------------------------------------------------------------------- 1 | 4a339f8b8d0ddd7e8c73adaf7b1564c00e47ec903ba6155239f92afff6d3f7b5 2 | -------------------------------------------------------------------------------- /garbage/tinyemu/checksums: -------------------------------------------------------------------------------- 1 | be8351f2121819b3172fcedce5cb1826fa12c87da1b7ed98f269d3e802a05555 2 | -------------------------------------------------------------------------------- /gfx/libXpm/depends: -------------------------------------------------------------------------------- 1 | libICE 2 | libSM 3 | libX11 4 | libXau 5 | libXext 6 | libXt 7 | libxcb 8 | -------------------------------------------------------------------------------- /java/libXp/depends: -------------------------------------------------------------------------------- 1 | libXext make 2 | libX11 make 3 | libXau make 4 | xorgproto make 5 | -------------------------------------------------------------------------------- /java/lksctp-tools/checksums: -------------------------------------------------------------------------------- 1 | 3e9ab5b3844a8b65fc8152633aafe85f406e6da463e53921583dfc4a443ff03a 2 | -------------------------------------------------------------------------------- /libs/gst-transcoder/checksums: -------------------------------------------------------------------------------- 1 | b5e65c70f2827aee42810120ca9637fd1f56e7cccf825b1b2f20e575cebdcd62 2 | -------------------------------------------------------------------------------- /libs/gst-transcoder/sources: -------------------------------------------------------------------------------- 1 | https://github.com/pitivi/gst-transcoder/archive/1.16.0.tar.gz 2 | -------------------------------------------------------------------------------- /libs/gstreamer/sources: -------------------------------------------------------------------------------- 1 | https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.16.2.tar.xz 2 | -------------------------------------------------------------------------------- /libs/libkscreen/checksums: -------------------------------------------------------------------------------- 1 | a962319000324200ec1abe3c58b1b8ab71ed4cc7c88a3c7e03a1c8eca86c287c 2 | -------------------------------------------------------------------------------- /libs/libkscreen/sources: -------------------------------------------------------------------------------- 1 | https://download.kde.org/stable/plasma/5.18.5/libkscreen-5.18.5.tar.xz 2 | -------------------------------------------------------------------------------- /libs/libpagemaker/checksums: -------------------------------------------------------------------------------- 1 | 66adacd705a7d19895e08eac46d1e851332adf2e736c566bef1164e7a442519d 2 | -------------------------------------------------------------------------------- /libs/librevenge/checksums: -------------------------------------------------------------------------------- 1 | 933f0729f04267cc354b9a02bc3e9afefa5512a3bdd0b45f159ee14a3e3347b2 2 | -------------------------------------------------------------------------------- /lxqt/dbus-glib/sources: -------------------------------------------------------------------------------- 1 | http://dbus.freedesktop.org/releases/dbus-glib/dbus-glib-0.110.tar.gz 2 | -------------------------------------------------------------------------------- /lxqt/libdbusmenu-qt/checksums: -------------------------------------------------------------------------------- 1 | a8e6358a31c44ccdf1bfc46c95a77a6bfc7fc1f536aadb913ed4f4405c570cf6 2 | -------------------------------------------------------------------------------- /lxqt/libfm-extra/checksums: -------------------------------------------------------------------------------- 1 | 96b1244bde41ca0eef0332cfb5c67bb16725dfd102128f3e6f74fadc13a1cfe4 2 | -------------------------------------------------------------------------------- /lxqt/libsysstat/checksums: -------------------------------------------------------------------------------- 1 | 67dc786a4aca4b6ce142a2355ac6dd4c873c1e03f978676926500fffa73ebae8 2 | -------------------------------------------------------------------------------- /lxqt/lximage-qt/checksums: -------------------------------------------------------------------------------- 1 | 33cb2ce4cde14acb66c11f1bfed1d904ceb30c52453d9accde9f728f56f53e0a 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-about/checksums: -------------------------------------------------------------------------------- 1 | 50d7156b5d8691ced72e85312b54da1e94503824b177c5e16ce8fae977f8445c 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-admin/checksums: -------------------------------------------------------------------------------- 1 | ccdd6e86607f529fd8524893724679e8e0186c097cc45abde635e2efe11954fd 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-archiver/checksums: -------------------------------------------------------------------------------- 1 | ce2548bd16ee4f28304ba4741a5d006611b874340f3257240a9b03a8d42fe2c4 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-config/checksums: -------------------------------------------------------------------------------- 1 | ebe26f1d5b9392e6363d7269468d45419b3dac7873ca0b3826a757eb4d7bcaa1 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-panel/checksums: -------------------------------------------------------------------------------- 1 | 64f802644cdc0e8744aa631798b0b05e8df8d2eceb53b530dbfe392324b5d9a0 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-policykit/checksums: -------------------------------------------------------------------------------- 1 | e2e6b27ce0e3611937c2ecc8525a18541ed8758a9dccea62357f1d427b4dec4f 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-qtplugin/checksums: -------------------------------------------------------------------------------- 1 | 43595276881f8e00d689d0c16cf6238a33f0c0a0bba97cc5ebff513457eb86ee 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-runner/checksums: -------------------------------------------------------------------------------- 1 | 614a3c6f4662835a2d9219b81a442ff4cf7800cdb55028edc5481908a9bbbd0b 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-session/checksums: -------------------------------------------------------------------------------- 1 | e44fcc0ba10165713a35729fe4a7e227af466d8f8b9fbc3fed1f8a2a68a0c69f 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-themes/checksums: -------------------------------------------------------------------------------- 1 | a10137fa839bffc4fca2dbf72ae82e70f97167d5280828953126c2163030fbb7 2 | -------------------------------------------------------------------------------- /lxqt/pcmanfm-qt/checksums: -------------------------------------------------------------------------------- 1 | 4d1a076046f33ee6ffd58e79a18ca516e198f21a59dff4a2d8da04962130ecc7 2 | -------------------------------------------------------------------------------- /lxqt/qtermwidget/checksums: -------------------------------------------------------------------------------- 1 | 6ecaf7c91be282c5e34937a853fe649729966c38d7e8f4cf54c0df94d85ac3ee 2 | -------------------------------------------------------------------------------- /lxqt/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eudaldgr/kiss-garbage/HEAD/lxqt/screenshot.png -------------------------------------------------------------------------------- /lxqt/xdg-user-dirs/checksums: -------------------------------------------------------------------------------- 1 | 2a07052823788e8614925c5a19ef5b968d8db734fdee656699ea4f97d132418c 2 | -------------------------------------------------------------------------------- /lxqt/xdg-user-dirs/sources: -------------------------------------------------------------------------------- 1 | http://user-dirs.freedesktop.org/releases/xdg-user-dirs-0.17.tar.gz 2 | -------------------------------------------------------------------------------- /python/python-cairo/checksums: -------------------------------------------------------------------------------- 1 | 2c143183280feb67f5beb4e543fd49990c28e7df427301ede04fc550d3562e84 2 | -------------------------------------------------------------------------------- /science/gnuplot/checksums: -------------------------------------------------------------------------------- 1 | 60a6764ccf404a1668c140f11cc1f699290ab70daa1151bb58fed6139a28ac37 2 | -------------------------------------------------------------------------------- /themes/arc-theme/checksums: -------------------------------------------------------------------------------- 1 | cd268b878d6ad7c81b7acc0f89b66e26ee9a9a92eafb03b792318d51707f1962 2 | -------------------------------------------------------------------------------- /themes/papirus-icon-theme/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | make DESTDIR="$1" PREFIX=/usr install 4 | -------------------------------------------------------------------------------- /video/libbluray/checksums: -------------------------------------------------------------------------------- 1 | cd41ea06fd2512a77ebf63872873641908ef81ce2fe4e4c842f6035a47696c11 2 | -------------------------------------------------------------------------------- /video/libdvdcss/checksums: -------------------------------------------------------------------------------- 1 | 78c2ed77ec9c0d8fbed7bf7d3abc82068b8864be494cfad165821377ff3f2575 2 | -------------------------------------------------------------------------------- /video/libdvdnav/checksums: -------------------------------------------------------------------------------- 1 | f697b15ea9f75e9f36bdf6ec3726308169f154e2b1e99865d0bbe823720cee5b 2 | -------------------------------------------------------------------------------- /video/libdvdread/checksums: -------------------------------------------------------------------------------- 1 | 3e357309a17c5be3731385b9eabda6b7e3fa010f46022a06f104553bf8e21796 2 | -------------------------------------------------------------------------------- /extra/adwaita-icon-theme/checksums: -------------------------------------------------------------------------------- 1 | 6683a1aaf2430ccd9ea638dd4bfe1002bc92b412050c3dba20e480f979faaf97 2 | -------------------------------------------------------------------------------- /extra/appstream-glib/checksums: -------------------------------------------------------------------------------- 1 | ca1ed22e3bde3912cb903aaa7de085d55771da454f1c0573fd9608e1de9c4002 2 | -------------------------------------------------------------------------------- /extra/libgsf/depends: -------------------------------------------------------------------------------- 1 | bzip2 2 | gdk-pixbuf make 3 | glib 4 | libffi 5 | libxml2 6 | xz 7 | zlib 8 | -------------------------------------------------------------------------------- /extra/mypaint-brushes/checksums: -------------------------------------------------------------------------------- 1 | 7984a74edef94571d872d0629b224abaa956a36f632f5c5516b33d22e49eb566 2 | -------------------------------------------------------------------------------- /garbage/android-tools/checksums: -------------------------------------------------------------------------------- 1 | 7fb1c127c36b0752657593838b6823743bf8e5730f9f8b0f7ba2c185424cf376 2 | -------------------------------------------------------------------------------- /garbage/lynis/sources: -------------------------------------------------------------------------------- 1 | https://downloads.cisofy.com/lynis/lynis-2.7.5.tar.gz 2 | files/lynis.cron 3 | -------------------------------------------------------------------------------- /garbage/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eudaldgr/kiss-garbage/HEAD/garbage/screenshot.png -------------------------------------------------------------------------------- /garbage/tiramisu/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | make 4 | install -Dm755 tiramisu "$1/usr/bin/tiramisu" 5 | -------------------------------------------------------------------------------- /gfx/double-conversion/checksums: -------------------------------------------------------------------------------- 1 | a63ecb93182134ba4293fd5f22d6e08ca417caafa244afaa751cbfddf6415b13 2 | -------------------------------------------------------------------------------- /gfx/double-conversion/sources: -------------------------------------------------------------------------------- 1 | https://github.com/google/double-conversion/archive/v3.1.5.tar.gz 2 | -------------------------------------------------------------------------------- /libs/gst-plugins-base/checksums: -------------------------------------------------------------------------------- 1 | b13e73e2fe74a4166552f9577c3dcb24bed077021b9c7fa600d910ec6987816a 2 | -------------------------------------------------------------------------------- /libs/libsigc++/sources: -------------------------------------------------------------------------------- 1 | https://download.gnome.org/sources/libsigc++/2.10/libsigc++-2.10.3.tar.xz 2 | -------------------------------------------------------------------------------- /lxqt/libfm-extra/sources: -------------------------------------------------------------------------------- 1 | https://downloads.sourceforge.net/sourceforge/pcmanfm/libfm-1.3.1.tar.xz 2 | -------------------------------------------------------------------------------- /lxqt/liblxqt/sources: -------------------------------------------------------------------------------- 1 | https://github.com/lxqt/liblxqt/releases/download/0.15.0/liblxqt-0.15.0.tar.xz 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-build-tools/checksums: -------------------------------------------------------------------------------- 1 | 85fe1946a92731f22585c30eda8bea923f5221ffbea0e31dc834d722d86cfb90 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-globalkeys/checksums: -------------------------------------------------------------------------------- 1 | ce54a1f62a3ec8a5ae0db5639df14141f4fea70643b915fb91c05c31fcbedbf1 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-notificationd/checksums: -------------------------------------------------------------------------------- 1 | bc20642f6f7bea9586c81e7c58396be08fb5a996a0be5e55760aac2db051db05 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-s5/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword/post-install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gtk-update-icon-cache -f -t /usr/share/icons/hicolor 4 | -------------------------------------------------------------------------------- /office/abiword/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/gnumeric/post-install: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | glib-compile-schemas /usr/share/glib-2.0/schemas 4 | -------------------------------------------------------------------------------- /python/python-gobject/checksums: -------------------------------------------------------------------------------- 1 | d1bf42802d1cec113b5adaa0e7bf7f3745b44521dc2163588d276d5cd61d718f 2 | -------------------------------------------------------------------------------- /python/python-telegram/checksums: -------------------------------------------------------------------------------- 1 | 8050bb50785b76f5c8c5e3672453d6726b4ea5778fb571c257b0519ec6097fd0 2 | -------------------------------------------------------------------------------- /video/dav1d/sources: -------------------------------------------------------------------------------- 1 | https://code.videolan.org/videolan/dav1d/-/archive/0.7.1/dav1d-0.7.1.tar.bz2 2 | -------------------------------------------------------------------------------- /video/libdvdcss/sources: -------------------------------------------------------------------------------- 1 | https://download.videolan.org/pub/libdvdcss/1.4.2/libdvdcss-1.4.2.tar.bz2 2 | -------------------------------------------------------------------------------- /extra/gobject-introspection/checksums: -------------------------------------------------------------------------------- 1 | dd44a55ee5f426ea22b6b89624708f9e8d53f5cc94e5485c15c87cb30e06161d 2 | -------------------------------------------------------------------------------- /garbage/libtorrent-rasterbar/checksums: -------------------------------------------------------------------------------- 1 | e926602fa0bde3b93744b19323634ab047f74f967db8fd014d0a4fe91b0784e0 2 | -------------------------------------------------------------------------------- /libs/gst-editing-services/checksums: -------------------------------------------------------------------------------- 1 | 0e06a6191a0c6c16e16272bf2573cecaeb245f10629486ad940a299bef700c16 2 | -------------------------------------------------------------------------------- /libs/gst-transcoder/depends: -------------------------------------------------------------------------------- 1 | glib 2 | gst-plugins-base 3 | gstreamer 4 | libexecinfo 5 | libffi 6 | zlib 7 | -------------------------------------------------------------------------------- /libs/libpagemaker/sources: -------------------------------------------------------------------------------- 1 | https://dev-www.libreoffice.org/src/libpagemaker/libpagemaker-0.0.4.tar.xz 2 | -------------------------------------------------------------------------------- /lxqt/libfm-qt/sources: -------------------------------------------------------------------------------- 1 | https://github.com/lxqt/libfm-qt/releases/download/0.15.1/libfm-qt-0.15.1.tar.xz 2 | -------------------------------------------------------------------------------- /lxqt/libqtxdg/sources: -------------------------------------------------------------------------------- 1 | https://github.com/lxqt/libqtxdg/releases/download/3.5.0/libqtxdg-3.5.0.tar.xz 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-openssh-askpass/checksums: -------------------------------------------------------------------------------- 1 | 5371e955b18494eaa342c9ccfc7ef64b38af4c78514bdcdc4c81a017898416c1 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-powermanagement/checksums: -------------------------------------------------------------------------------- 1 | 80728e48f9a88407ef9deeaeaa7dd6d6dfa52a539cdc04c6cb3ee9670d3f54cd 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-applix/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-bmp/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-collab/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-command/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-docbook/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-eml/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-epub/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-garble/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-gdict/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-gimp/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-google/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-hancom/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-hrtext/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-iscii/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-kword/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-latex/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-mht/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-mif/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-mswrite/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-openxml/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-opml/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-paint/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-pdb/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-pdf/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-sdw/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-t602/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-urldict/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-wml/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-xslfo/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /python/python-gobject/sources: -------------------------------------------------------------------------------- 1 | https://download.gnome.org/sources/pygobject/3.36/pygobject-3.36.1.tar.xz 2 | -------------------------------------------------------------------------------- /science/R/sources: -------------------------------------------------------------------------------- 1 | https://cran.r-project.org/src/base/R-4/R-4.0.2.tar.gz 2 | patches/remove_po_dir.patch 3 | -------------------------------------------------------------------------------- /themes/papirus-icon-theme/checksums: -------------------------------------------------------------------------------- 1 | 8f2d81fdfb44d7702c3142bd6d2bc69df191f0f70e4bdb1d2e335e0715a5dfb1 2 | -------------------------------------------------------------------------------- /garbage/libtorrent-rasterbar/sources: -------------------------------------------------------------------------------- 1 | https://github.com/arvidn/libtorrent/archive/libtorrent-1_2_5.tar.gz 2 | -------------------------------------------------------------------------------- /libs/libwpg/sources: -------------------------------------------------------------------------------- 1 | https://downloads.sourceforge.net/project/libwpg/libwpg/libwpg-0.3.3/libwpg-0.3.3.tar.bz2 2 | -------------------------------------------------------------------------------- /lxqt/libsysstat/sources: -------------------------------------------------------------------------------- 1 | https://github.com/lxqt/libsysstat/releases/download/0.4.3/libsysstat-0.4.3.tar.xz 2 | -------------------------------------------------------------------------------- /lxqt/lximage-qt/sources: -------------------------------------------------------------------------------- 1 | https://github.com/lxqt/lximage-qt/releases/download/0.15.0/lximage-qt-0.15.0.tar.xz 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-about/sources: -------------------------------------------------------------------------------- 1 | https://github.com/lxqt/lxqt-about/releases/download/0.15.0/lxqt-about-0.15.0.tar.xz 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-admin/sources: -------------------------------------------------------------------------------- 1 | https://github.com/lxqt/lxqt-admin/releases/download/0.15.0/lxqt-admin-0.15.0.tar.xz 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-panel/sources: -------------------------------------------------------------------------------- 1 | https://github.com/lxqt/lxqt-panel/releases/download/0.15.0/lxqt-panel-0.15.0.tar.xz 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-sudo/sources: -------------------------------------------------------------------------------- 1 | https://github.com/lxqt/lxqt-sudo/releases/download/0.15.0/lxqt-sudo-0.15.0.tar.xz 2 | -------------------------------------------------------------------------------- /lxqt/obconf-qt/sources: -------------------------------------------------------------------------------- 1 | https://github.com/lxqt/obconf-qt/releases/download/0.15.0/obconf-qt-0.15.0.tar.xz 2 | -------------------------------------------------------------------------------- /lxqt/pcmanfm-qt/sources: -------------------------------------------------------------------------------- 1 | https://github.com/lxqt/pcmanfm-qt/releases/download/0.15.1/pcmanfm-qt-0.15.1.tar.xz 2 | -------------------------------------------------------------------------------- /lxqt/qterminal/sources: -------------------------------------------------------------------------------- 1 | https://github.com/lxqt/qterminal/releases/download/0.15.0/qterminal-0.15.0.tar.xz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-babelfish/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-clarisworks/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-loadbindings/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-openwriter/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-passepartout/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-presentation/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-s5/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-wikipedia/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /science/gnuplot/sources: -------------------------------------------------------------------------------- 1 | https://downloads.sourceforge.net/project/gnuplot/gnuplot/5.2.8/gnuplot-5.2.8.tar.gz 2 | -------------------------------------------------------------------------------- /video/libbluray/sources: -------------------------------------------------------------------------------- 1 | https://download.videolan.org/pub/videolan/libbluray/1.2.0/libbluray-1.2.0.tar.bz2 2 | -------------------------------------------------------------------------------- /video/libdvdnav/sources: -------------------------------------------------------------------------------- 1 | https://download.videolan.org/pub/videolan/libdvdnav/6.1.0/libdvdnav-6.1.0.tar.bz2 2 | -------------------------------------------------------------------------------- /video/libdvdread/sources: -------------------------------------------------------------------------------- 1 | https://download.videolan.org/pub/videolan/libdvdread/6.1.1/libdvdread-6.1.1.tar.bz2 2 | -------------------------------------------------------------------------------- /extra/libmypaint/sources: -------------------------------------------------------------------------------- 1 | https://github.com/mypaint/libmypaint/releases/download/v1.6.1/libmypaint-1.6.1.tar.xz 2 | -------------------------------------------------------------------------------- /extra/poppler-data/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | make \ 4 | prefix=/usr \ 5 | DESTDIR="$1" \ 6 | install 7 | -------------------------------------------------------------------------------- /garbage/dmg2img/sources: -------------------------------------------------------------------------------- 1 | http://vu1tur.eu.org/tools/dmg2img-1.6.7.tar.gz 2 | patches/openssl-compatibility.patch 3 | -------------------------------------------------------------------------------- /garbage/lynis/files/lynis.cron: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /usr/sbin/lynis audit system --auditor "automated" --cronjob 4 | -------------------------------------------------------------------------------- /gfx/inkscape/sources: -------------------------------------------------------------------------------- 1 | https://media.inkscape.org/dl/resources/file/inkscape-1.0.tar.xz 2 | patches/fix-Werror.patch 3 | -------------------------------------------------------------------------------- /java/lksctp-tools/depends: -------------------------------------------------------------------------------- 1 | autoconf make 2 | automake make 3 | libtool make 4 | linux-headers make 5 | -------------------------------------------------------------------------------- /libs/libwpd/sources: -------------------------------------------------------------------------------- 1 | https://downloads.sourceforge.net/project/libwpd/libwpd/libwpd-0.10.3/libwpd-0.10.3.tar.bz2 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-config/sources: -------------------------------------------------------------------------------- 1 | https://github.com/lxqt/lxqt-config/releases/download/0.15.0/lxqt-config-0.15.0.tar.xz 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-runner/sources: -------------------------------------------------------------------------------- 1 | https://github.com/lxqt/lxqt-runner/releases/download/0.15.0/lxqt-runner-0.15.0.tar.xz 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-session/sources: -------------------------------------------------------------------------------- 1 | https://github.com/lxqt/lxqt-session/releases/download/0.15.0/lxqt-session-0.15.0.tar.xz 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-themes/sources: -------------------------------------------------------------------------------- 1 | https://github.com/lxqt/lxqt-themes/releases/download/0.15.0/lxqt-themes-0.15.0.tar.xz 2 | -------------------------------------------------------------------------------- /lxqt/qtermwidget/sources: -------------------------------------------------------------------------------- 1 | https://github.com/lxqt/qtermwidget/releases/download/0.15.0/qtermwidget-0.15.0.tar.xz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-applix/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-bmp/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-collab/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-command/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-docbook/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-eml/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-epub/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-freetranslation/checksums: -------------------------------------------------------------------------------- 1 | e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-garble/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-gdict/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-gimp/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-google/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-hancom/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-hrtext/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-iscii/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-kword/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-latex/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-mht/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-mif/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-mswrite/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-openxml/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-opml/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-paint/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-pdb/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-pdf/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-sdw/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-t602/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-urldict/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-wml/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-xslfo/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /python/python-cairo/sources: -------------------------------------------------------------------------------- 1 | https://github.com/pygobject/pycairo/releases/download/v1.19.1/pycairo-1.19.1.tar.gz 2 | -------------------------------------------------------------------------------- /themes/arc-theme/sources: -------------------------------------------------------------------------------- 1 | https://github.com/jnsh/arc-theme/releases/download/20200513/arc-theme-20200513.tar.xz 2 | -------------------------------------------------------------------------------- /extra/wv/depends: -------------------------------------------------------------------------------- 1 | bzip2 2 | glib 3 | libffi 4 | libgsf 5 | libpng 6 | libxml2 7 | pkgconf make 8 | xz 9 | zlib 10 | -------------------------------------------------------------------------------- /gfx/atkmm/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr 5 | 6 | make 7 | make DESTDIR="$1" install 8 | -------------------------------------------------------------------------------- /gfx/cairomm/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr 5 | 6 | make 7 | make DESTDIR="$1" install 8 | -------------------------------------------------------------------------------- /gfx/glibmm/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr 5 | 6 | make 7 | make DESTDIR="$1" install 8 | -------------------------------------------------------------------------------- /gfx/gsl/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr 5 | 6 | make 7 | make DESTDIR="$1" install 8 | -------------------------------------------------------------------------------- /gfx/pangomm/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr 5 | 6 | make 7 | make DESTDIR="$1" install 8 | -------------------------------------------------------------------------------- /libs/gst-plugins-base/sources: -------------------------------------------------------------------------------- 1 | https://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-1.16.2.tar.xz 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-archiver/sources: -------------------------------------------------------------------------------- 1 | https://github.com/lxqt/lxqt-archiver/releases/download/0.2.0/lxqt-archiver-0.2.0.tar.xz 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-qtplugin/sources: -------------------------------------------------------------------------------- 1 | https://github.com/lxqt/lxqt-qtplugin/releases/download/0.15.0/lxqt-qtplugin-0.15.0.tar.xz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-babelfish/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-clarisworks/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-loadbindings/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-openwriter/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-passepartout/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-presentation/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-wikipedia/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /office/wordgrinder/sources: -------------------------------------------------------------------------------- 1 | https://github.com/davidgiven/wordgrinder/archive/0.7.2.tar.gz 2 | patches/fixes-musl.patch 3 | -------------------------------------------------------------------------------- /themes/papirus-icon-theme/sources: -------------------------------------------------------------------------------- 1 | https://github.com/PapirusDevelopmentTeam/papirus-icon-theme/archive/20200602.tar.gz 2 | -------------------------------------------------------------------------------- /extra/adwaita-icon-theme/sources: -------------------------------------------------------------------------------- 1 | https://download.gnome.org/sources/adwaita-icon-theme/3.38/adwaita-icon-theme-3.38.0.tar.xz 2 | -------------------------------------------------------------------------------- /extra/appstream-glib/sources: -------------------------------------------------------------------------------- 1 | https://people.freedesktop.org/~hughsient/appstream-glib/releases/appstream-glib-0.7.18.tar.xz 2 | -------------------------------------------------------------------------------- /extra/appstream/post-install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | umask 022 4 | /usr/bin/appstreamcli refresh-cache --force 5 | 6 | exit 0 7 | -------------------------------------------------------------------------------- /garbage/android-tools/sources: -------------------------------------------------------------------------------- 1 | https://github.com/nmeum/android-tools/releases/download/29.0.6/android-tools-29.0.6.tar.xz 2 | -------------------------------------------------------------------------------- /garbage/libtorrent-rasterbar/depends: -------------------------------------------------------------------------------- 1 | autoconf make 2 | boost 3 | cmake make 4 | linux-headers make 5 | python 6 | -------------------------------------------------------------------------------- /libs/libXaw/depends: -------------------------------------------------------------------------------- 1 | libICE 2 | libSM 3 | libX11 4 | libXau 5 | libXext 6 | libXmu 7 | libXpm 8 | libXt 9 | libxcb 10 | -------------------------------------------------------------------------------- /libs/librevenge/sources: -------------------------------------------------------------------------------- 1 | https://sourceforge.net/projects/libwpd/files/librevenge/librevenge-0.0.4/librevenge-0.0.4.tar.xz 2 | -------------------------------------------------------------------------------- /libs/libsigc++/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr 5 | 6 | make 7 | make DESTDIR="$1" install 8 | -------------------------------------------------------------------------------- /lxqt/lxqt-build-tools/sources: -------------------------------------------------------------------------------- 1 | https://github.com/lxqt/lxqt-build-tools/releases/download/0.7.0/lxqt-build-tools-0.7.0.tar.xz 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-globalkeys/sources: -------------------------------------------------------------------------------- 1 | https://github.com/lxqt/lxqt-globalkeys/releases/download/0.15.0/lxqt-globalkeys-0.15.0.tar.xz 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-policykit/sources: -------------------------------------------------------------------------------- 1 | https://github.com/lxqt/lxqt-policykit/releases/download/0.15.0/lxqt-policykit-0.15.0.tar.xz 2 | -------------------------------------------------------------------------------- /office/abiword-plugin-freetranslation/sources: -------------------------------------------------------------------------------- 1 | http://www.abisource.com/downloads/abiword/3.0.4/source/abiword-3.0.4.tar.gz 2 | -------------------------------------------------------------------------------- /python/python-gobject/depends: -------------------------------------------------------------------------------- 1 | gobject-introspection 2 | meson make 3 | python 4 | python-cairo make 5 | -------------------------------------------------------------------------------- /extra/goffice/sources: -------------------------------------------------------------------------------- 1 | https://download.gnome.org/sources/goffice/0.10/goffice-0.10.48.tar.xz 2 | patches/remove-intltool.patch 3 | -------------------------------------------------------------------------------- /extra/mypaint-brushes/sources: -------------------------------------------------------------------------------- 1 | https://github.com/mypaint/mypaint-brushes/releases/download/v2.0.2/mypaint-brushes-2.0.2.tar.xz 2 | -------------------------------------------------------------------------------- /libs/gst-editing-services/depends: -------------------------------------------------------------------------------- 1 | glib 2 | gst-plugins-base 3 | gstreamer 4 | libexecinfo 5 | libffi 6 | libxml2 7 | xz 8 | zlib 9 | -------------------------------------------------------------------------------- /libs/gst-transcoder/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr 5 | 6 | make 7 | make DESTDIR="$1" install 8 | -------------------------------------------------------------------------------- /libs/libmspub/sources: -------------------------------------------------------------------------------- 1 | https://dev-www.libreoffice.org/src/libmspub/libmspub-0.1.4.tar.xz 2 | patches/libmspub-0.1.4-gcc10.patch 3 | -------------------------------------------------------------------------------- /lxqt/libdbusmenu-qt/sources: -------------------------------------------------------------------------------- 1 | https://launchpad.net/ubuntu/+archive/primary/+files/libdbusmenu-qt_0.9.3+16.04.20160218.orig.tar.gz 2 | -------------------------------------------------------------------------------- /extra/appstream/sources: -------------------------------------------------------------------------------- 1 | https://www.freedesktop.org/software/appstream/releases/AppStream-0.13.1.tar.xz 2 | patches/no-gtk-doc.patch 3 | -------------------------------------------------------------------------------- /extra/gobject-introspection/sources: -------------------------------------------------------------------------------- 1 | https://download.gnome.org/sources/gobject-introspection/1.66/gobject-introspection-1.66.1.tar.xz 2 | -------------------------------------------------------------------------------- /libs/glfw/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | libXcursor 3 | libXi 4 | libXinerama 5 | libxkbcommon make 6 | libXrandr 7 | mesa make 8 | -------------------------------------------------------------------------------- /lxqt/liblxqt/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | libqtxdg make 3 | lxqt-build-tools make 4 | kwindowsystem make 5 | qt5-svg make 6 | polkit-qt-1 7 | -------------------------------------------------------------------------------- /lxqt/lxqt-notificationd/sources: -------------------------------------------------------------------------------- 1 | https://github.com/lxqt/lxqt-notificationd/releases/download/0.15.0/lxqt-notificationd-0.15.0.tar.xz 2 | -------------------------------------------------------------------------------- /office/gnumeric/depends: -------------------------------------------------------------------------------- 1 | bison make 2 | goffice 3 | gtk+3 4 | libXslt 5 | libxml2 6 | perl make 7 | pkgconf make 8 | python make 9 | -------------------------------------------------------------------------------- /garbage/testdisk/depends: -------------------------------------------------------------------------------- 1 | e2fsprogs make 2 | libjpeg-turbo make 3 | ncurses make 4 | ntfs-3g make 5 | zlib make 6 | -------------------------------------------------------------------------------- /libs/gst-editing-services/sources: -------------------------------------------------------------------------------- 1 | https://gstreamer.freedesktop.org/src/gstreamer-editing-services/gstreamer-editing-services-1.16.2.tar.xz 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-openssh-askpass/sources: -------------------------------------------------------------------------------- 1 | https://github.com/lxqt/lxqt-openssh-askpass/releases/download/0.15.0/lxqt-openssh-askpass-0.15.0.tar.xz 2 | -------------------------------------------------------------------------------- /lxqt/lxqt-powermanagement/sources: -------------------------------------------------------------------------------- 1 | https://github.com/lxqt/lxqt-powermanagement/releases/download/0.15.0/lxqt-powermanagement-0.15.0.tar.xz 2 | -------------------------------------------------------------------------------- /python/python-cairo/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | python setup.py build 4 | python setup.py install --prefix=/usr --root="$1" --skip-build 5 | -------------------------------------------------------------------------------- /science/glpk/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --with-gmp 6 | 7 | make 8 | make DESTDIR="$1" install 9 | -------------------------------------------------------------------------------- /extra/babl/depends: -------------------------------------------------------------------------------- 1 | gobject-introspection make 2 | lcms 3 | meson make 4 | pkgconf make 5 | samurai make 6 | -------------------------------------------------------------------------------- /gfx/grafx2/checksums: -------------------------------------------------------------------------------- 1 | d9ca6b48a01657d23ceac9fd7ce53d551acb3c02d5f7d4a973c34113053056bc 2 | caa60b380c7e0a762d62459bc9ca31d16b22b0f85c972e6315e3744ae1f2ffb5 3 | -------------------------------------------------------------------------------- /gfx/jp2a/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | autoreconf -vi 4 | 5 | ./configure \ 6 | --prefix=/usr 7 | 8 | make 9 | make DESTDIR="$1" install 10 | -------------------------------------------------------------------------------- /lxqt/muparser/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --enable-samples=no 6 | 7 | make 8 | make DESTDIR="$1" install 9 | -------------------------------------------------------------------------------- /science/R/checksums: -------------------------------------------------------------------------------- 1 | d3bceab364da0876625e4097808b42512395fdf41292f4915ab1fd257c1bbe75 2 | a631cd22bb2dac46afdb8b210040a91eaff48cacf09e41912d8ba4c046376d3b 3 | -------------------------------------------------------------------------------- /extra/appstream-glib/depends: -------------------------------------------------------------------------------- 1 | gdk-pixbuf 2 | glib 3 | libarchive 4 | libsoup 5 | meson make 6 | pango 7 | samurai make 8 | util-linux 9 | yaml 10 | -------------------------------------------------------------------------------- /extra/appstream/checksums: -------------------------------------------------------------------------------- 1 | ba7de61223aaa76d8c47d8857bf185c28d4c2a099f3ab02c8837091e7e8f8626 2 | 34589b6c9f49552df821b544775e8dfebd55edafca33c7e6447e5bcb3c267f98 3 | -------------------------------------------------------------------------------- /extra/goffice/checksums: -------------------------------------------------------------------------------- 1 | a439162fa26a0e58117e07b82b37000a7f421088ad379eb1f6a1cdee101ecefc 2 | 26550b22db90b450aa4e00671f2491d0706a74fc468161e9beac932bd5a12f72 3 | -------------------------------------------------------------------------------- /extra/goffice/depends: -------------------------------------------------------------------------------- 1 | autoconf make 2 | automake make 3 | cairo 4 | glib 5 | gtk+3 6 | libXslt 7 | libgsf 8 | librsvg 9 | libtool make 10 | libxml2 11 | -------------------------------------------------------------------------------- /garbage/dmg2img/checksums: -------------------------------------------------------------------------------- 1 | 02aea6d05c5b810074913b954296ddffaa43497ed720ac0a671da4791ec4d018 2 | 17aa674abc4252154d3576ade4f466f9a52a50a77964ee1417e06d8c076dcb81 3 | -------------------------------------------------------------------------------- /garbage/lynis/checksums: -------------------------------------------------------------------------------- 1 | 3d27ade73a5c1248925ad9c060024940ce5d2029f40aaa901f43314888fe324d 2 | 93ee2cb0790285c3eff99b23164dee13f2a997bf3877964af57cd99d698d7737 3 | -------------------------------------------------------------------------------- /gfx/inkscape/checksums: -------------------------------------------------------------------------------- 1 | 89c123d1a62ac52db6a08fe3be730584411b89a88ecc528a410b4f3fa53f94bb 2 | 55ecea0852222821859a0930b82e176936786c2ca5308d78b4d37e7bddda2f5f 3 | -------------------------------------------------------------------------------- /libs/libmspub/checksums: -------------------------------------------------------------------------------- 1 | ef36c1a1aabb2ba3b0bedaaafe717bf4480be2ba8de6f3894be5fd3702b013ba 2 | 4a61368132bc617010d07e5fd1cc6cd4aa09cc9c7c8d4445714ecaf35965594e 3 | -------------------------------------------------------------------------------- /lxqt/menu-cache/checksums: -------------------------------------------------------------------------------- 1 | ed02eb459dcb398f69b9fa5bf4dd813020405afc84331115469cdf7be9273ec7 2 | 393723ca805cb5ffb5eee2ad00a1c4624b513ca72bfb6a880d71907fb96e83de 3 | -------------------------------------------------------------------------------- /extra/mypaint-brushes/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | autoreconf -i 4 | 5 | ./configure \ 6 | --prefix=/usr 7 | 8 | make 9 | make DESTDIR="$1" install 10 | -------------------------------------------------------------------------------- /libs/libfreehand/sources: -------------------------------------------------------------------------------- 1 | https://dev-www.libreoffice.org/src/libfreehand/libfreehand-0.1.2.tar.xz 2 | patches/fix-build.patch 3 | patches/parentheses-gcc8-fix.patch 4 | -------------------------------------------------------------------------------- /libs/libxslt/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | chmod 644 python/tests/* 4 | 5 | ./configure \ 6 | --prefix=/usr 7 | 8 | make 9 | make DESTDIR="$1" install 10 | -------------------------------------------------------------------------------- /lxqt/lxmenu-data/sources: -------------------------------------------------------------------------------- 1 | https://downloads.sourceforge.net/sourceforge/lxde/lxmenu-data-0.1.5.tar.xz 2 | patches/fix-intltool.patch 3 | patches/remove_po_dir.patch 4 | -------------------------------------------------------------------------------- /lxqt/menu-cache/sources: -------------------------------------------------------------------------------- 1 | https://downloads.sourceforge.net/sourceforge/lxde/menu-cache-1.1.0.tar.xz 2 | patches/menu-cache-1.1.0-0001-Support-gcc10-compilation.patch 3 | -------------------------------------------------------------------------------- /lxqt/xdg-user-dirs/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --disable-documentation 6 | 7 | make 8 | make DESTDIR="$1" install 9 | -------------------------------------------------------------------------------- /lxqt/xmlto/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --mandir=/usr/share/man 6 | 7 | make -j1 8 | make -j1 DESTDIR="$1" install 9 | -------------------------------------------------------------------------------- /office/wordgrinder/checksums: -------------------------------------------------------------------------------- 1 | 4e1bc659403f98479fe8619655f901c8c03eb87743374548b4d20a41d31d1dff 2 | c38fd4481960793618314ce075e1b0070b513e62e6b9f96a8aeb7866eb95172c 3 | -------------------------------------------------------------------------------- /python/python-gstreamer/sources: -------------------------------------------------------------------------------- 1 | https://gitlab.freedesktop.org/gstreamer/gst-python/-/archive/1.16.2/gst-python-1.16.2.tar.gz 2 | patches/python-3.8-compat.patch 3 | -------------------------------------------------------------------------------- /java/gcc6-gcj/depends: -------------------------------------------------------------------------------- 1 | autoconf make 2 | automake make 3 | bash make 4 | binutils 5 | bison make 6 | fastjar 7 | flex make 8 | libtool make 9 | zlib 10 | -------------------------------------------------------------------------------- /python/python-gstreamer/checksums: -------------------------------------------------------------------------------- 1 | 71690c204c519f7123be3c1f233daaf97f344f1ec8ea851d791de9fa59fe246a 2 | b5ee8b1aa24cf21be83c76670de5c49e46b79b1df30d5af96ee05235db943809 3 | -------------------------------------------------------------------------------- /python/python-telegram/sources: -------------------------------------------------------------------------------- 1 | https://files.pythonhosted.org/packages/6d/88/e6d70e74ae7febcfdf56431cff93aa4851f1d758114f1bd4ebd808d2c609/python-telegram-0.12.0.tar.gz 2 | -------------------------------------------------------------------------------- /garbage/tinyemu/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | sed -i 's|bindir=/usr/local/bin|bindir=/usr/bin|g' Makefile 4 | 5 | mkdir -p "$1/usr/bin/" 6 | 7 | make DESTDIR="$1" install 8 | -------------------------------------------------------------------------------- /garbage/btfs/depends: -------------------------------------------------------------------------------- 1 | autoconf make 2 | automake make 3 | curl make 4 | fuse make 5 | libtorrent-rasterbar make 6 | python 7 | -------------------------------------------------------------------------------- /gfx/gtkmm/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export CXXFLAGS="$CXXFLAGS -std=c++11" 4 | 5 | ./configure \ 6 | --prefix=/usr 7 | 8 | make 9 | make DESTDIR="$1" install 10 | -------------------------------------------------------------------------------- /extra/babl/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | meson \ 6 | --prefix=/usr \ 7 | . output 8 | 9 | ninja -C output 10 | ninja -C output install 11 | -------------------------------------------------------------------------------- /garbage/btfs/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | autoreconf -vfi 4 | 5 | ./configure \ 6 | --prefix=/usr \ 7 | --mandir=/usr/share/man 8 | 9 | make 10 | make DESTDIR="$1" install 11 | -------------------------------------------------------------------------------- /garbage/dmg2img/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | patch -Np1 -i openssl-compatibility.patch 4 | 5 | sed -i 's/-o root -g root//g' Makefile 6 | 7 | make PREFIX=/usr DESTDIR="$1" install 8 | -------------------------------------------------------------------------------- /gfx/gimp/sources: -------------------------------------------------------------------------------- 1 | http://download.gimp.org/pub/gimp/v2.99/gimp-2.99.4.tar.bz2 2 | patches/fix_intltool.patch 3 | patches/remove_glib_networking.patch 4 | patches/remove_po_dir.patch 5 | -------------------------------------------------------------------------------- /lxqt/upower/sources: -------------------------------------------------------------------------------- 1 | https://gitlab.freedesktop.org/upower/upower/-/archive/UPOWER_0_99_11/upower-UPOWER_0_99_11.tar.bz2 2 | patches/01-no-gettext.patch 3 | patches/02-no-gtk-doc.patch 4 | -------------------------------------------------------------------------------- /office/wordgrinder/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | patch -Np1 -i fixes-musl.patch 4 | 5 | sed -i "7s!\$(HOME)!$1/usr!" Makefile 6 | 7 | make 8 | make PREFIX=/usr DESTDIR="$1" install 9 | -------------------------------------------------------------------------------- /science/gnuplot/depends: -------------------------------------------------------------------------------- 1 | cairo make 2 | pango make 3 | gd make 4 | lua make 5 | readline make 6 | libpng make 7 | libjpeg-turbo make 8 | -------------------------------------------------------------------------------- /extra/gegl/depends: -------------------------------------------------------------------------------- 1 | babl 2 | bash make 3 | glib 4 | gobject-introspection make 5 | meson make 6 | pkgconf make 7 | samurai make 8 | -------------------------------------------------------------------------------- /extra/yaml/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --sysconfdir=/etc \ 6 | --localstatedir=/var 7 | 8 | make 9 | make DESTDIR="$1" install 10 | -------------------------------------------------------------------------------- /gfx/grafx2/sources: -------------------------------------------------------------------------------- 1 | https://gitlab.com/GrafX2/grafX2/-/archive/v2.7/grafX2-v2.7.tar.gz grafx2 2 | https://sourceforge.net/projects/recoil/files/recoil/5.0.0/recoil-5.0.0.tar.gz grafx2/recoil 3 | -------------------------------------------------------------------------------- /gfx/libXpm/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ac_cv_search_gettext=no \ 4 | ./configure \ 5 | --prefix=/usr \ 6 | --sysconfdir=/etc 7 | 8 | make 9 | make DESTDIR="$1" install 10 | -------------------------------------------------------------------------------- /lxqt/libfm-qt/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr 5 | 6 | make -C build 7 | make -C build \ 8 | DESTDIR="$1" \ 9 | install 10 | -------------------------------------------------------------------------------- /lxqt/libqtxdg/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr 5 | 6 | make -C build 7 | make -C build \ 8 | DESTDIR="$1" \ 9 | install 10 | -------------------------------------------------------------------------------- /lxqt/libsysstat/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr 5 | 6 | make -C build 7 | make -C build \ 8 | DESTDIR="$1" \ 9 | install 10 | -------------------------------------------------------------------------------- /lxqt/lximage-qt/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr 5 | 6 | make -C build 7 | make -C build \ 8 | DESTDIR="$1" \ 9 | install 10 | -------------------------------------------------------------------------------- /lxqt/lxqt-about/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr 5 | 6 | make -C build 7 | make -C build \ 8 | DESTDIR="$1" \ 9 | install 10 | -------------------------------------------------------------------------------- /lxqt/lxqt-admin/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr 5 | 6 | make -C build 7 | make -C build \ 8 | DESTDIR="$1" \ 9 | install 10 | -------------------------------------------------------------------------------- /lxqt/lxqt-config/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr 5 | 6 | make -C build 7 | make -C build \ 8 | DESTDIR="$1" \ 9 | install 10 | -------------------------------------------------------------------------------- /lxqt/lxqt-runner/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr 5 | 6 | make -C build 7 | make -C build \ 8 | DESTDIR="$1" \ 9 | install 10 | -------------------------------------------------------------------------------- /lxqt/lxqt-sudo/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr 5 | 6 | make -C build 7 | make -C build \ 8 | DESTDIR="$1" \ 9 | install 10 | -------------------------------------------------------------------------------- /lxqt/lxqt-themes/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr 5 | 6 | make -C build 7 | make -C build \ 8 | DESTDIR="$1" \ 9 | install 10 | -------------------------------------------------------------------------------- /lxqt/obconf-qt/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr 5 | 6 | make -C build 7 | make -C build \ 8 | DESTDIR="$1" \ 9 | install 10 | -------------------------------------------------------------------------------- /lxqt/pcmanfm-qt/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr 5 | 6 | make -C build 7 | make -C build \ 8 | DESTDIR="$1" \ 9 | install 10 | -------------------------------------------------------------------------------- /lxqt/qterminal/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr 5 | 6 | make -C build 7 | make -C build \ 8 | DESTDIR="$1" \ 9 | install 10 | -------------------------------------------------------------------------------- /lxqt/qtermwidget/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr 5 | 6 | make -C build 7 | make -C build \ 8 | DESTDIR="$1" \ 9 | install 10 | -------------------------------------------------------------------------------- /video/libdvdnav/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --disable-static \ 6 | --enable-shared 7 | 8 | make 9 | make DESTDIR="$1" install 10 | -------------------------------------------------------------------------------- /gfx/potrace/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --mandir=/usr/share/man \ 6 | --with-libpotrace 7 | 8 | make 9 | make DESTDIR="$1" install 10 | -------------------------------------------------------------------------------- /lxqt/lxqt-archiver/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr 5 | 6 | make -C build 7 | make -C build \ 8 | DESTDIR="$1" \ 9 | install 10 | -------------------------------------------------------------------------------- /lxqt/lxqt-build-tools/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr 5 | 6 | make -C build 7 | make -C build \ 8 | DESTDIR="$1" \ 9 | install 10 | -------------------------------------------------------------------------------- /lxqt/lxqt-globalkeys/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr 5 | 6 | make -C build 7 | make -C build \ 8 | DESTDIR="$1" \ 9 | install 10 | -------------------------------------------------------------------------------- /lxqt/lxqt-policykit/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr 5 | 6 | make -C build 7 | make -C build \ 8 | DESTDIR="$1" \ 9 | install 10 | -------------------------------------------------------------------------------- /lxqt/lxqt-qtplugin/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr 5 | 6 | make -C build 7 | make -C build \ 8 | DESTDIR="$1" \ 9 | install 10 | -------------------------------------------------------------------------------- /lxqt/lxqt-session/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr 5 | 6 | make -C build 7 | make -C build \ 8 | DESTDIR="$1" \ 9 | install 10 | -------------------------------------------------------------------------------- /python/python-telegram/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | python setup.py build 4 | python setup.py install \ 5 | --prefix=/usr \ 6 | --root="$1" \ 7 | --optimize=1 \ 8 | --skip-build 9 | -------------------------------------------------------------------------------- /garbage/android-tools/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | cmake -B build \ 6 | -DCMAKE_INSTALL_PREFIX=/usr 7 | 8 | cmake --build build 9 | cmake --install build 10 | -------------------------------------------------------------------------------- /lxqt/lxqt-notificationd/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr 5 | 6 | make -C build 7 | make -C build \ 8 | DESTDIR="$1" \ 9 | install 10 | -------------------------------------------------------------------------------- /lxqt/lxqt-openssh-askpass/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr 5 | 6 | make -C build 7 | make -C build \ 8 | DESTDIR="$1" \ 9 | install 10 | -------------------------------------------------------------------------------- /lxqt/lxqt-powermanagement/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr 5 | 6 | make -C build 7 | make -C build \ 8 | DESTDIR="$1" \ 9 | install 10 | -------------------------------------------------------------------------------- /office/gnumeric/sources: -------------------------------------------------------------------------------- 1 | https://download.gnome.org/sources/gnumeric/1.12/gnumeric-1.12.48.tar.xz 2 | patches/remove-intltool.patch 3 | patches/remove-xml-parser.patch 4 | patches/remove-po-dir.patch 5 | -------------------------------------------------------------------------------- /video/handbrake/sources: -------------------------------------------------------------------------------- 1 | https://github.com/HandBrake/HandBrake/releases/download/1.3.3/HandBrake-1.3.3-source.tar.bz2 2 | patches/remove-dvdnav-dup.patch 3 | patches/fix-missing-x265-link-flag.patch 4 | -------------------------------------------------------------------------------- /libs/raylib/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | glfw 3 | libX11 make 4 | libXcursor make 5 | libXinerama make 6 | libXrandr make 7 | samurai make 8 | xinput make 9 | xorg-server make 10 | -------------------------------------------------------------------------------- /science/gd/sources: -------------------------------------------------------------------------------- 1 | https://github.com/libgd/libgd/archive/gd-2.2.5.tar.gz 2 | patches/CVE-2018-1000222.patch 3 | patches/CVE-2018-5711.patch 4 | patches/CVE-2019-6977.patch 5 | patches/CVE-2019-6978.patch 6 | -------------------------------------------------------------------------------- /libs/libverto/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | autoreconf -i 4 | 5 | ./configure \ 6 | --prefix=/usr \ 7 | --with-libev \ 8 | --with-libevent 9 | 10 | make 11 | make DESTDIR="$1" install 12 | -------------------------------------------------------------------------------- /libs/libkscreen/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr \ 5 | -DBUILD_TESTING=OFF 6 | 7 | make -C build 8 | make -C build \ 9 | DESTDIR="$1" \ 10 | install 11 | -------------------------------------------------------------------------------- /office/abiword/depends: -------------------------------------------------------------------------------- 1 | boost 2 | cairo 3 | fribidi 4 | goffice 5 | gtk+3 6 | libX11 7 | libXslt 8 | libgsf 9 | libjpeg-turbo 10 | libpng 11 | librsvg 12 | perl make 13 | pkgconf make 14 | wv 15 | -------------------------------------------------------------------------------- /video/libdvdread/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --disable-static \ 6 | --enable-shared \ 7 | --with-libdvdcss 8 | 9 | make 10 | make DESTDIR="$1" install 11 | -------------------------------------------------------------------------------- /lxqt/upower/checksums: -------------------------------------------------------------------------------- 1 | d50961ff6d2c5bc5e9b8ef6611a12dc8933f722ebf7de245b97fbe72999ebd9b 2 | e337436a7f376a4743e3fc8bab5d7a1bc5e96c3815a752c6cce026a02897c88c 3 | bbaa1392e8e1710798ffe500bfc1dde0b2692c4091883a44fc941ceb9c72e06f 4 | -------------------------------------------------------------------------------- /office/wordgrinder/depends: -------------------------------------------------------------------------------- 1 | bzip2 2 | expat 3 | fontconfig 4 | freetype-harfbuzz 5 | glib 6 | libX11 7 | libXau 8 | libXft 9 | libXrender 10 | libpng 11 | libxcb 12 | ncurses 13 | pkgconf make 14 | zlib 15 | -------------------------------------------------------------------------------- /libs/libfreehand/checksums: -------------------------------------------------------------------------------- 1 | 0e422d1564a6dbf22a9af598535425271e583514c0f7ba7d9091676420de34ac 2 | 550c1e2aa24c418fbf8ba30904f83d437f259fd7521a2eb14f8a88990af07a70 3 | 9eb2613fe56846e73205916fa924f08e037bcb68f1366ee38faee1510798ebf0 4 | -------------------------------------------------------------------------------- /libs/libqxp/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --sysconfdir=/etc \ 6 | --mandir=/usr/share/man \ 7 | --infodir=/usr/share/info 8 | 9 | make 10 | make DESTDIR="$1" install 11 | -------------------------------------------------------------------------------- /lxqt/lxmenu-data/checksums: -------------------------------------------------------------------------------- 1 | 9fe3218d2ef50b91190162f4f923d6524c364849f87bcda8b4ed8eb59b80bab8 2 | f65d211920675ef10448b52e1d7fc68378d231a046c713de55bd42737f6fc0e5 3 | 4acdee90d1981c139484747b8e28955c7a01bf3c37ce7285c39d363c188a9fa9 4 | -------------------------------------------------------------------------------- /video/handbrake/checksums: -------------------------------------------------------------------------------- 1 | 218a37d95f48b5e7cf285363d3ab16c314d97627a7a710cab3758902ae877f85 2 | 493158c7cde23d6c853d323c7a1349c1e37320bac4074f73a2d65e23a02b2137 3 | 372757b7991db817b4d45d35ed636b02fa8f1520751dbf011351f901ee7415af 4 | -------------------------------------------------------------------------------- /java/fastjar/sources: -------------------------------------------------------------------------------- 1 | https://download.savannah.gnu.org/releases/fastjar/fastjar-0.98.tar.gz 2 | patches/0001-Properly-zero-terminate-filename.patch 3 | patches/0002-Fix-write-return-value-check.patch 4 | patches/CVE-2010-2322.patch 5 | -------------------------------------------------------------------------------- /libs/libexecinfo/sources: -------------------------------------------------------------------------------- 1 | http://distcache.freebsd.org/local-distfiles/itetcu/libexecinfo-1.1.tar.bz2 2 | patches/01-execinfo.patch 3 | patches/02-makefile.patch 4 | patches/03-define-gnu-source.patch 5 | patches/libexecinfo_pc.patch 6 | -------------------------------------------------------------------------------- /libs/libxml2/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --with-threads \ 6 | --with-history \ 7 | --with-python \ 8 | --without-icu 9 | 10 | make 11 | make DESTDIR="$1" install 12 | -------------------------------------------------------------------------------- /lxqt/dbus-glib/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --libexecdir=/usr/lib/dbus-glib \ 6 | --sysconfdir=/etc \ 7 | --disable-static 8 | 9 | make 10 | make DESTDIR="$1" install 11 | -------------------------------------------------------------------------------- /science/gd/depends: -------------------------------------------------------------------------------- 1 | autoconf make 2 | automake make 3 | bash make 4 | libpng make 5 | libjpeg-turbo make 6 | libwebp make 7 | freetype-harfbuzz make 8 | zlib make 9 | -------------------------------------------------------------------------------- /video/libdvdcss/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --sysconfdir=/etc \ 6 | --mandir=/usr/share/man \ 7 | --infodir=/usr/share/info 8 | 9 | make 10 | make DESTDIR="$1" install 11 | -------------------------------------------------------------------------------- /libs/glfw/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr \ 5 | -DCMAKE_INSTALL_LIBDIR=lib \ 6 | -DBUILD_SHARED_LIBS=ON 7 | 8 | cd build 9 | 10 | make PREFIX=/usr DESTDIR="$1" install 11 | -------------------------------------------------------------------------------- /office/abiword-plugin-bmp/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-eml/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-mht/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-mif/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-pdb/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-pdf/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-s5/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-sdw/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-wml/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-applix/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-collab/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-command/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-docbook/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-epub/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-garble/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-gdict/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-gimp/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-google/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-hancom/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-hrtext/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-iscii/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-kword/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-latex/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-mswrite/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-openxml/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-opml/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-paint/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-t602/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-urldict/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-xslfo/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /lxqt/lxmenu-data/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | for patch in *.patch; do 4 | patch -Np1 < "$patch" 5 | done 6 | 7 | ./configure \ 8 | --prefix=/usr \ 9 | --disable-nls 10 | 11 | make -j "$(nproc)" 12 | make DESTDIR="$1" install 13 | -------------------------------------------------------------------------------- /office/abiword-plugin-babelfish/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-clarisworks/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-loadbindings/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-openwriter/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-passepartout/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-presentation/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /office/abiword-plugin-wikipedia/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /extra/libmypaint/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | #sed -i "s/if \`\$INTLTOOL_PERL -e/if test -z \`\$INTLTOOL_PERL -e/g" configure 4 | 5 | ./configure \ 6 | --prefix=/usr \ 7 | --enable-i18n=no 8 | 9 | make 10 | make DESTDIR="$1" install 11 | -------------------------------------------------------------------------------- /libs/libgudev/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --sysconfdir=/etc \ 6 | --localstatedir=/var \ 7 | --libexecdir=/usr/lib/upower \ 8 | --disable-umockdev 9 | 10 | make 11 | make DESTDIR="$1" install 12 | -------------------------------------------------------------------------------- /libs/libvisio/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --sysconfdir=/etc \ 6 | --mandir=/usr/share/man \ 7 | --localstatedir=/var \ 8 | --disable-werror 9 | 10 | make 11 | make DESTDIR="$1" install 12 | -------------------------------------------------------------------------------- /libs/libzmf/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --sysconfdir=/etc \ 6 | --mandir=/usr/share/man \ 7 | --localstatedir=/var \ 8 | --disable-werror 9 | 10 | make 11 | make DESTDIR="$1" install 12 | -------------------------------------------------------------------------------- /office/abiword-plugin-freetranslation/depends: -------------------------------------------------------------------------------- 1 | abiword 2 | boost 3 | cairo 4 | fribidi 5 | goffice 6 | gtk+3 7 | libX11 8 | libXslt 9 | libgsf 10 | libjpeg-turbo 11 | libpng 12 | librsvg 13 | perl make 14 | pkgconf make 15 | wv 16 | -------------------------------------------------------------------------------- /lxqt/liblxqt/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr \ 5 | -DCMAKE_INSTALL_LIBDIR=lib \ 6 | -DPULL_TRANSLATIONS=no 7 | 8 | make -C build 9 | make -C build \ 10 | DESTDIR="$1" \ 11 | install 12 | -------------------------------------------------------------------------------- /libs/libcdr/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --sysconfdir=/etc \ 6 | --mandir=/usr/share/man \ 7 | --infodir=/usr/share/info \ 8 | --localstatedir=/var 9 | 10 | make 11 | make DESTDIR="$1" install 12 | -------------------------------------------------------------------------------- /libs/libwpd/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --sysconfdir=/etc \ 6 | --mandir=/usr/share/man \ 7 | --infodir=/usr/share/info \ 8 | --localstatedir=/var 9 | 10 | make 11 | make DESTDIR="$1" install 12 | -------------------------------------------------------------------------------- /libs/libwpg/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --sysconfdir=/etc \ 6 | --mandir=/usr/share/man \ 7 | --infodir=/usr/share/info \ 8 | --localstatedir=/var 9 | 10 | make 11 | make DESTDIR="$1" install 12 | -------------------------------------------------------------------------------- /office/ledger/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | cmake -B build \ 6 | -DCMAKE_INSTALL_PREFIX:PATH=/usr \ 7 | -DCMAKE_INSTALL_LIBDIR:PATH=lib \ 8 | -DUSE_PYTHON:BOOL=FALSE 9 | 10 | cmake --build build 11 | cmake --install build 12 | -------------------------------------------------------------------------------- /libs/fltk/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --enable-shared \ 6 | --enable-threads \ 7 | --with-optim="$CXXFLAGS" 8 | 9 | make V=1 10 | make DESTDIR="$1" install 11 | 12 | # remove static libs 13 | rm "$1/usr/lib/"*.a 14 | -------------------------------------------------------------------------------- /libs/gst-editing-services/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --disable-gtk-doc \ 6 | --with-package-name="GStreamer (KISS Linux)" \ 7 | --with-package-origin="http://k1ss.org/" 8 | 9 | make 10 | make DESTDIR="$1" install 11 | -------------------------------------------------------------------------------- /libs/jansson/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --sysconfdir=/etc \ 6 | --mandir=/usr/share/man \ 7 | --infodir=/usr/share/info \ 8 | --localstatedir=/var \ 9 | --disable-static 10 | 11 | make 12 | make DESTDIR="$1" install 13 | -------------------------------------------------------------------------------- /video/speex/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --sysconfdir=/etc \ 6 | --mandir=/usr/share/man \ 7 | --infodir=/usr/share/info \ 8 | --disable-static \ 9 | --enable-binaries 10 | 11 | make 12 | make -j1 DESTDIR="$1" install 13 | -------------------------------------------------------------------------------- /gfx/gimp/checksums: -------------------------------------------------------------------------------- 1 | df25c149c78f265181809d7685a9470a62c3c2f08c05e8498a4d5c86a048a5b2 2 | 83cc61593abfce2f23820d65343907a57b191dd163f8065bfb739b6948557dd2 3 | 07e73426f114c3424aaa6110e735a17a497304ba13b037f3476991ef4324c3aa 4 | 46cbd29abeac2e08198c1a4718883e174733224edfb94e4a80cabfd97dc42fdd 5 | -------------------------------------------------------------------------------- /java/fastjar/checksums: -------------------------------------------------------------------------------- 1 | f156abc5de8658f22ee8f08d7a72c88f9409ebd8c7933e9466b0842afeb2f145 2 | 93aa186b95f686e8bc383fea7e875aa2f71aeeda9fb4d74720c926c40b31658d 3 | 9bbd0b5e3e2d41a87c454a29b3386e6e7aa7e56117f58e9a467fb9aff23b3aec 4 | d0f1c2014aeeca1f118fb424196be0add5b5d21182a9951788373f203c6df8cb 5 | -------------------------------------------------------------------------------- /libs/libpagemaker/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --sysconfdir=/etc \ 6 | --mandir=/usr/share/man \ 7 | --infodir=/usr/share/info \ 8 | --localstatedir=/var \ 9 | --disable-werror 10 | 11 | make 12 | make DESTDIR="$1" install 13 | -------------------------------------------------------------------------------- /extra/exiv2/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | cmake -B build \ 6 | -DCMAKE_BUILD_TYPE=None \ 7 | -DCMAKE_INSTALL_PREFIX=/usr \ 8 | -DCMAKE_INSTALL_LIBDIR=lib \ 9 | -DEXIV2_BUILD_SAMPLES=OFF 10 | 11 | cmake --build build 12 | cmake --install build 13 | -------------------------------------------------------------------------------- /gfx/cairomm/depends: -------------------------------------------------------------------------------- 1 | bzip2 2 | cairo 3 | expat 4 | fontconfig 5 | freetype-harfbuzz 6 | glib 7 | libX11 8 | libXau 9 | libXdamage 10 | libXext 11 | libXfixes 12 | libXrender 13 | libXxf86vm 14 | libdrm 15 | libpng 16 | libsigc++ 17 | libxcb 18 | libxshmfence 19 | mesa 20 | pixman 21 | zlib 22 | -------------------------------------------------------------------------------- /gfx/double-conversion/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | cmake -B build \ 6 | -DBUILD_TESTS=OFF \ 7 | -DCMAKE_INSTALL_PREFIX=/usr \ 8 | -DCMAKE_INSTALL_LIBDIR=lib \ 9 | -DBUILD_SHARED_LIBS=ON 10 | 11 | cmake --build build 12 | cmake --install build 13 | -------------------------------------------------------------------------------- /office/gnumeric/checksums: -------------------------------------------------------------------------------- 1 | 57cce33a41d34db81292e9eebae8b5046f30e5d919d848256fbb75bfc132a590 2 | 305abeb13b7430894853216f194311cc8d5e2b94da58fd23bfad0f2624b886df 3 | 41318314c92c8c67ce554440c336e65301ca6aa91ea26b609752ffb2a807fd09 4 | d264cbfa8f817193ac8fd6f141dcc6c4d5293c727a12d6c75c760f4817e447ea 5 | -------------------------------------------------------------------------------- /science/qhull/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | cmake -B build \ 6 | -DCMAKE_INSTALL_PREFIX=/usr \ 7 | -DBUILD_SHARED_LIBS=True \ 8 | -DCMAKE_BUILD_TYPE=None \ 9 | -DCMAKE_SKIP_INSTALL_RPATH=YES 10 | 11 | cmake --build build 12 | cmake --install build 13 | -------------------------------------------------------------------------------- /garbage/tinywm/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export CC=gcc 4 | export PREFIX=/usr 5 | export CFLAGS="-Os -pedantic -Wall" 6 | 7 | mkdir -p "$1/${PREFIX}/bin" 8 | 9 | # shellcheck disable=SC2086 10 | ${CC} ${CFLAGS} -I${PREFIX}/include tinywm.c -L${PREFIX}/lib -lX11 -o "$1/${PREFIX}/bin/tinywm" 11 | -------------------------------------------------------------------------------- /lxqt/libdbusmenu-qt/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr \ 5 | -DCMAKE_INSTALL_LIBDIR=lib \ 6 | -DCMAKE_BUILD_TYPE=None \ 7 | -DUSE_QT5=ON \ 8 | -DWITH_DOC=OFF 9 | 10 | make -C build 11 | make -C build \ 12 | DESTDIR="$1" \ 13 | install 14 | -------------------------------------------------------------------------------- /science/gnuplot/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --sysconfdir=/etc \ 6 | --mandir=/usr/share/man \ 7 | --localstatedir=/var \ 8 | --enable-stats \ 9 | --disable-wxwidgets \ 10 | --disable-qt 11 | 12 | make 13 | make DESTDIR="$1" install 14 | -------------------------------------------------------------------------------- /garbage/testdisk/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --build=x86_64-pc-linux-musl \ 5 | --host=x86_64-pc-linux-musl \ 6 | --prefix=/usr \ 7 | --sysconfdir=/etc \ 8 | --mandir=/usr/share/man \ 9 | --infodir=/usr/share/info 10 | 11 | make 12 | make DESTDIR="$1" install 13 | -------------------------------------------------------------------------------- /java/lksctp-tools/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./bootstrap 4 | 5 | ./configure \ 6 | --prefix=/usr 7 | 8 | make 9 | make DESTDIR="$1" install 10 | 11 | mkdir -p "$1/usr/lib" 12 | mv "$1/usr/lib/lksctp-tools" "$1/usr/lib" 13 | 14 | mv "$1/usr/include/netinet/sctp.h.in" "$1/usr/include/netinet/sctp.h" 15 | -------------------------------------------------------------------------------- /libs/libmspub/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | patch -Np1 -i libmspub-0.1.4-gcc10.patch 4 | 5 | ./configure \ 6 | --prefix=/usr \ 7 | --sysconfdir=/etc \ 8 | --mandir=/usr/share/man \ 9 | --infodir=/usr/share/info \ 10 | --localstatedir=/var 11 | 12 | make 13 | make DESTDIR="$1" install 14 | -------------------------------------------------------------------------------- /extra/gobject-introspection/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | meson \ 6 | --prefix=/usr \ 7 | --sysconfdir=/etc \ 8 | --mandir=/usr/share/man \ 9 | --localstatedir=/var \ 10 | --buildtype=plain \ 11 | . output 12 | 13 | ninja -C output 14 | ninja -C output install 15 | -------------------------------------------------------------------------------- /gfx/gimp/depends: -------------------------------------------------------------------------------- 1 | alsa-lib 2 | appstream-glib 3 | atk 4 | babl 5 | cairo 6 | fontconfig 7 | freetype-harfbuzz 8 | gdk-pixbuf 9 | gegl 10 | gexiv2 11 | glib 12 | gtk+3 13 | json-c 14 | lcms 15 | libarchive 16 | libjpeg-turbo 17 | libmypaint 18 | libpng 19 | librsvg 20 | openjpeg2 21 | pango 22 | poppler 23 | tiff 24 | -------------------------------------------------------------------------------- /libs/fltk/depends: -------------------------------------------------------------------------------- 1 | bzip2 2 | expat 3 | fontconfig 4 | freetype-harfbuzz 5 | glib 6 | libX11 7 | libXau 8 | libXcursor 9 | libXdamage 10 | libXext 11 | libXfixes 12 | libXft 13 | libXinerama 14 | libXrender 15 | libXxf86vm 16 | libdrm 17 | libjpeg-turbo 18 | libpng 19 | libxcb 20 | libxshmfence 21 | mesa 22 | zlib 23 | -------------------------------------------------------------------------------- /lxqt/menu-cache/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | patch -Np1 -i menu-cache-1.1.0-0001-Support-gcc10-compilation.patch 4 | 5 | sed -i 's,,,g' menu-cache-gen/*.[ch] 6 | 7 | ./configure \ 8 | --prefix=/usr \ 9 | --disable-static 10 | 11 | make 12 | make DESTDIR="$1" install 13 | -------------------------------------------------------------------------------- /libs/gstreamer/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | meson \ 6 | --prefix=/usr \ 7 | -Dbuildtype=release \ 8 | -Ddbghelp=disabled \ 9 | -Dintrospection=enabled \ 10 | -Dexample=false \ 11 | -Dgtk_doc=disabled \ 12 | . output 13 | 14 | ninja -C output 15 | ninja -C output install 16 | -------------------------------------------------------------------------------- /libs/libXaw/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --sysconfdir=/etc \ 6 | --mandir=/usr/share/man \ 7 | --infodir=/usr/share/info \ 8 | --localstatedir=/var \ 9 | --disable-xaw8 \ 10 | --disable-static \ 11 | --disable-xaw6 12 | 13 | make 14 | make DESTDIR="$1" install 15 | -------------------------------------------------------------------------------- /python/python-gobject/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | meson \ 6 | --prefix=/usr \ 7 | --sysconfdir=/etc \ 8 | --mandir=/usr/share/man \ 9 | --localstatedir=/var \ 10 | --buildtype=plain \ 11 | -Dpython=python3 \ 12 | . output 13 | 14 | ninja -C output 15 | ninja -C output install 16 | -------------------------------------------------------------------------------- /lxqt/lxqt-panel/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -DCMAKE_INSTALL_PREFIX=/usr \ 5 | -DCPULOAD_PLUGIN:BOOL=OFF \ 6 | -DSENSORS_PLUGIN:BOOL=OFF \ 7 | -DNETWORKMONITOR_PLUGIN:BOOL=OFF \ 8 | -DVOLUME_USE_PULSEAUDIO:BOOL=OFF 9 | 10 | make -C build 11 | make -C build \ 12 | DESTDIR="$1" \ 13 | install 14 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: Shellcheck 2 | 3 | on: [push, pull_request] 4 | 5 | jobs: 6 | build: 7 | 8 | runs-on: ubuntu-latest 9 | 10 | steps: 11 | - uses: actions/checkout@v1 12 | - name: Run shellcheck. 13 | run: | 14 | shopt -s nullglob 15 | shellcheck */*/build */*/post-install */*/pre-remove 16 | -------------------------------------------------------------------------------- /gfx/pangomm/depends: -------------------------------------------------------------------------------- 1 | bzip2 2 | cairo 3 | cairomm 4 | expat 5 | fontconfig 6 | freetype-harfbuzz 7 | fribidi 8 | glib 9 | glibmm 10 | libX11 11 | libXau 12 | libXdamage 13 | libXext 14 | libXfixes 15 | libXrender 16 | libXxf86vm 17 | libdrm 18 | libffi 19 | libpng 20 | libsigc++ 21 | libxcb 22 | libxshmfence 23 | mesa 24 | pango 25 | pixman 26 | zlib 27 | -------------------------------------------------------------------------------- /science/gd/checksums: -------------------------------------------------------------------------------- 1 | 199874fdb006de0911819234104ffa84338e98e82fefbac042a58a3f8272a7df 2 | 43b665d906b16693ca6dfacdf16fcce4e0ff55442d1eae7ff6b70f689c3c08f1 3 | 84dd86ea6f8409e9bf152e3fff56e170b5249a3584d34327c0425f84c8136cc4 4 | dda3bb5f3582f09c5d013e800a37e38b8e817d4d036c52e169944646fe513ece 5 | 4f191c9db122edf3aaba24b7ad6efce4e839ae30ec004c24621b2e0b5261359c 6 | -------------------------------------------------------------------------------- /gfx/gdl/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | sed -i "s/if \`\$INTLTOOL_PERL -e/if test -z \`\$INTLTOOL_PERL -e/g" configure 4 | 5 | ./configure \ 6 | --prefix=/usr \ 7 | --sysconfdir=/etc \ 8 | --localstatedir=/var \ 9 | --disable-nls \ 10 | --disable-static 11 | 12 | make 13 | make DESTDIR="$1" install 14 | 15 | rm -r "$1/usr/share/gtk-doc" 16 | -------------------------------------------------------------------------------- /java/libXp/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --build=x86_64-pc-linux-musl \ 5 | --host=x86_64-pc-linux-musl \ 6 | --prefix=/usr \ 7 | --sysconfdir=/etc \ 8 | --mandir=/usr/share/man \ 9 | --infodir=/usr/share/info \ 10 | --localstatedir=/var \ 11 | --disable-static 12 | 13 | make 14 | make DESTDIR="$1" install 15 | -------------------------------------------------------------------------------- /libs/libexecinfo/checksums: -------------------------------------------------------------------------------- 1 | c9a21913e7fdac8ef6b33250b167aa1fc0a7b8a175145e26913a4c19d8a59b1f 2 | eff078913cf0baeff6e0442ec5c77d1b25d97d13a6d66d25f5576fd25486d752 3 | a24dd159c2985533864f8559aaac89c910ec4df61ff1e387375c779c404cfdaf 4 | 2ac238582e46e19f10099047941f5dbd89cbcdbd953c69540a00769c4a7d9c5e 5 | e4a26dd8f20d0b1e131f8fc7d94c956fca2d3e48b638c441a717bffbaee07909 6 | -------------------------------------------------------------------------------- /video/dav1d/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | meson \ 6 | --prefix=/usr \ 7 | --buildtype=plain \ 8 | -Denable_tests=false \ 9 | -Denable_tools=true \ 10 | -Dfuzzing_engine=none \ 11 | -Dtestdata_tests=false \ 12 | -Denable_asm=true \ 13 | . build 14 | 15 | ninja -C build 16 | ninja -C build install 17 | -------------------------------------------------------------------------------- /extra/adwaita-icon-theme/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --datadir=/usr/share \ 6 | --sysconfdir=/etc \ 7 | --mandir=/usr/share/man \ 8 | --infodir=/usr/share/info \ 9 | --localstatedir=/var 10 | 11 | make 12 | make \ 13 | DESTDIR="$1" \ 14 | pkgconfigdir=/usr/lib/pkgconfig \ 15 | install 16 | -------------------------------------------------------------------------------- /video/libbluray/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --sysconfdir=/etc \ 6 | --mandir=/usr/share/man \ 7 | --infodir=/usr/share/info \ 8 | --localstatedir=/var \ 9 | --disable-bdjava-jar \ 10 | --without-libxml2 \ 11 | --without-freetype \ 12 | --disable-static 13 | 14 | make 15 | make DESTDIR="$1" install 16 | -------------------------------------------------------------------------------- /extra/gexiv2/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | meson \ 6 | --prefix=/usr \ 7 | --sysconfdir=/etc \ 8 | --mandir=/usr/share/man \ 9 | --localstatedir=/var \ 10 | --buildtype=plain \ 11 | -Dgtk_doc=false \ 12 | -Dintrospection=true \ 13 | -Dvapi=true \ 14 | . output 15 | 16 | ninja -C output 17 | ninja -C output install 18 | -------------------------------------------------------------------------------- /extra/appstream-glib/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | meson \ 6 | --prefix=/usr \ 7 | -Ddep11=true \ 8 | -Dbuilder=true \ 9 | -Drpm=false \ 10 | -Dalpm=false \ 11 | -Dfonts=true \ 12 | -Dstemmer=false \ 13 | -Dman=false \ 14 | -Dgtk-doc=false \ 15 | -Dintrospection=true \ 16 | . output 17 | 18 | ninja -C output 19 | ninja -C output install 20 | -------------------------------------------------------------------------------- /extra/librsvg/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export RUSTFLAGS="$RUSTFLAGS -C debuginfo=2" 4 | 5 | kiss l gobject-introspection && gi=en 6 | 7 | ./configure \ 8 | --prefix=/usr \ 9 | --libexecdir=/usr/lib/librsvg \ 10 | --disable-static \ 11 | --enable-pixbuf-loader \ 12 | --disable-vala \ 13 | --"${gi:-dis}"able-introspection 14 | 15 | make 16 | make DESTDIR="$1" install 17 | -------------------------------------------------------------------------------- /libs/libfreehand/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export CXXFLAGS="$CXXFLAGS -Wno-error=deprecated-copy" 4 | 5 | for patch in *.patch; do 6 | patch -p1 < "$patch" 7 | done 8 | 9 | ./configure \ 10 | --prefix=/usr \ 11 | --sysconfdir=/etc \ 12 | --mandir=/usr/share/man \ 13 | --infodir=/usr/share/info \ 14 | --localstatedir=/var 15 | 16 | make 17 | make DESTDIR="$1" install 18 | -------------------------------------------------------------------------------- /java/fastjar/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | for patch in *.patch; do 4 | patch -p1 < "$patch" 5 | done 6 | 7 | ./configure \ 8 | --prefix=/usr \ 9 | --sysconfdir=/etc \ 10 | --mandir=/usr/share/man \ 11 | --infodir=/usr/share/info \ 12 | --localstatedir=/var 13 | 14 | make 15 | make DESTDIR="$1" install 16 | 17 | rm -rf "$1/usr/lib/charset.alias" 18 | rmdir -p "$1/usr/lib" 2>/dev/null || true 19 | -------------------------------------------------------------------------------- /java/gcc6-gcj/patches/051_all_libiberty-pic.patch: -------------------------------------------------------------------------------- 1 | --- a/libiberty/Makefile.in 2 | +++ b/libiberty/Makefile.in 3 | @@ -246,6 +246,7 @@ $(TARGETLIB): $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) 4 | $(AR) $(AR_FLAGS) $(TARGETLIB) \ 5 | $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS); \ 6 | $(RANLIB) $(TARGETLIB); \ 7 | + cp $(TARGETLIB) ../ ; \ 8 | cd ..; \ 9 | else true; fi 10 | 11 | -------------------------------------------------------------------------------- /video/handbrake/depends: -------------------------------------------------------------------------------- 1 | bzip2 2 | dav1d 3 | expat 4 | ffmpeg 5 | fontconfig 6 | freetype-harfbuzz 7 | fribidi 8 | glib 9 | jansson 10 | lame 11 | libass 12 | libbluray 13 | libdrm 14 | libdvdcss 15 | libdvdnav 16 | libdvdread 17 | libogg 18 | libpng 19 | libressl 20 | libtheora 21 | libvorbis 22 | libvpx 23 | libwebp 24 | libxml2 25 | opus 26 | speex 27 | x264 28 | x265 29 | xvidcore 30 | xz 31 | zlib 32 | -------------------------------------------------------------------------------- /libs/librevenge/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | CXXFLAGS="$CXXFLAGS -Wno-error=implicit-fallthrough -Wno-error=parentheses" \ 4 | ./configure \ 5 | --prefix=/usr \ 6 | --sysconfdir=/etc \ 7 | --mandir=/usr/share/man \ 8 | --infodir=/usr/share/info \ 9 | --localstatedir=/var \ 10 | --disable-dependency-tracking \ 11 | --enable-fast-install 12 | 13 | make 14 | make DESTDIR="$1" install 15 | -------------------------------------------------------------------------------- /lxqt/libfm-extra/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | sed -i "s/if \`\$INTLTOOL_PERL -e/if test -z \`\$INTLTOOL_PERL -e/g" configure 4 | 5 | ./configure -C \ 6 | --prefix=/usr \ 7 | --with-extra-only 8 | 9 | printf 'all:\n\ttrue\ninstall:\n\ttrue\nclean:\n\ttrue\n' > po/Makefile 10 | 11 | make 12 | make DESTDIR="$1" install 13 | 14 | # Remove conflicting symlink with libfm. 15 | rm "$1/usr/include/libfm" 16 | -------------------------------------------------------------------------------- /extra/wv/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --mandir=/usr/share/man \ 6 | ac_cv_path_mkdir="mkdir -p" 7 | 8 | # ^ the shipped install-sh is ancient and doesnt support the 9 | # mkdir -p functionality which autoconf wants to use: 10 | # install-sh -c -d "$DESTDIR/$bindir" - it causes cp to be 11 | # called instead with wrong args 12 | 13 | make 14 | make DESTDIR="$1" install 15 | -------------------------------------------------------------------------------- /python/python-gstreamer/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | for patch in *.patch; do 6 | patch -Np1 -i "$patch" 7 | done 8 | 9 | meson \ 10 | --prefix=/usr \ 11 | --sysconfdir=/etc \ 12 | --mandir=/usr/share/man \ 13 | --localstatedir=/var \ 14 | --buildtype=plain \ 15 | -Dpython=/usr/bin/python3 \ 16 | . output 17 | 18 | ninja -C output 19 | ninja -C output install 20 | -------------------------------------------------------------------------------- /java/gcc6-gcj/patches/901-fix-cxxflags-passing.patch: -------------------------------------------------------------------------------- 1 | --- gcc-4.8.1/Makefile.in.orig 2 | +++ gcc-4.8.1/Makefile.in 3 | @@ -170,6 +170,7 @@ 4 | # built for the build system to override those in BASE_FLAGS_TO_PASS. 5 | EXTRA_BUILD_FLAGS = \ 6 | CFLAGS="$(CFLAGS_FOR_BUILD)" \ 7 | + CXXFLAGS="$(CXXFLAGS_FOR_BUILD)" \ 8 | LDFLAGS="$(LDFLAGS_FOR_BUILD)" 9 | 10 | # This is the list of directories to built for the host system. 11 | -------------------------------------------------------------------------------- /lxqt/lxmenu-data/patches/remove_po_dir.patch: -------------------------------------------------------------------------------- 1 | --- old/Makefile.am 2 | +++ new/Makefile.am 3 | @@ -1,7 +1,6 @@ 4 | NULL = 5 | 6 | SUBDIRS = \ 7 | - po \ 8 | layout \ 9 | desktop-directories \ 10 | $(NULL) 11 | --- old/Makefile.in 12 | +++ new/Makefile.in 13 | @@ -304,7 +304,6 @@ 14 | top_srcdir = @top_srcdir@ 15 | NULL = 16 | SUBDIRS = \ 17 | - po \ 18 | layout \ 19 | desktop-directories \ 20 | $(NULL) 21 | -------------------------------------------------------------------------------- /lxqt/lxqt/depends: -------------------------------------------------------------------------------- 1 | breeze-icons 2 | elogind 3 | lximage-qt 4 | lxmenu-data 5 | lxqt-about 6 | lxqt-admin 7 | lxqt-archiver 8 | lxqt-config 9 | lxqt-globalkeys 10 | lxqt-notificationd 11 | lxqt-openssh-askpass 12 | lxqt-panel 13 | lxqt-policykit 14 | lxqt-powermanagement 15 | lxqt-qtplugin 16 | lxqt-runner 17 | lxqt-session 18 | lxqt-sudo 19 | lxqt-themes 20 | obconf-qt 21 | openbox 22 | pcmanfm-qt 23 | qterminal 24 | upower 25 | xdg-utils 26 | -------------------------------------------------------------------------------- /libs/hyphen/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --disable-static \ 6 | --disable-dependency-tracking \ 7 | --enable-fast-install 8 | 9 | make 10 | make -j1 DESTDIR="$1" install 11 | 12 | for lang in en_AG en_AU en_BS en_BW en_BZ en_CA en_DK en_GB en_GH en_HK en_IE en_IN en_JM en_NA en_NZ en_PH en_SG en_TT en_ZA en_ZW; do 13 | ln -s hyph_en_US.dic "$1/usr/share/hyphen/hyph_$lang.dic" 14 | done 15 | -------------------------------------------------------------------------------- /libs/gst-plugins-base/depends: -------------------------------------------------------------------------------- 1 | alsa-lib 2 | bzip2 3 | cairo 4 | eudev 5 | expat 6 | fontconfig 7 | freetype-harfbuzz 8 | fribidi 9 | glib 10 | gstreamer 11 | libX11 12 | libXau 13 | libXdamage 14 | libXext 15 | libXfixes 16 | libXrender 17 | libXxf86vm 18 | libdrm 19 | libexecinfo 20 | libffi 21 | libgudev 22 | libjpeg-turbo 23 | libogg 24 | libpng 25 | libtheora 26 | libvorbis 27 | libxcb 28 | libxshmfence 29 | mesa 30 | opus 31 | pango 32 | pixman 33 | zlib 34 | -------------------------------------------------------------------------------- /science/gd/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | for patch in *.patch; do 4 | patch -p1 < "$patch" 5 | done 6 | 7 | autoreconf -fis 8 | 9 | ./configure \ 10 | --build=x86_64-pc-linux-musl \ 11 | --host=x86_64-pc-linux-musl \ 12 | --prefix=/usr \ 13 | --sysconfdir=/etc \ 14 | --mandir=/usr/share/man \ 15 | --infodir=/usr/share/info \ 16 | --without-fontconfig \ 17 | --disable-werror 18 | 19 | make 20 | make DESTDIR="$1" PREFIX="$1" install 21 | -------------------------------------------------------------------------------- /java/gcc6-gcj/post-install: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cat > "/etc/profile.d/kiss_java.sh" < 'Tree'); 17 | - my $tree = $parser->parsefile ($xmlfile); 18 | - &removejunk ($xmlfile); 19 | 20 | my @items; 21 | 22 | -------------------------------------------------------------------------------- /java/gcc6-gcj/patches/302-gcc-4.9-musl-fortify.patch: -------------------------------------------------------------------------------- 1 | --- gcc-4.9.2/gcc/config/linux.h.orig 2015-03-09 13:27:13.289736710 +0000 2 | +++ gcc-4.9.2/gcc/config/linux.h 2015-03-09 13:29:32.295625046 +0000 3 | @@ -146,6 +146,8 @@ 4 | 5 | #ifdef NATIVE_SYSTEM_HEADER_DIR 6 | #define INCLUDE_DEFAULTS_MUSL_NATIVE \ 7 | + { NATIVE_SYSTEM_HEADER_DIR "/fortify", 0, 0, 0, 1, 2 }, \ 8 | + { NATIVE_SYSTEM_HEADER_DIR "/fortify", 0, 0, 0, 1, 0 }, \ 9 | { NATIVE_SYSTEM_HEADER_DIR, 0, 0, 0, 1, 2 }, \ 10 | { NATIVE_SYSTEM_HEADER_DIR, 0, 0, 0, 1, 0 }, 11 | #else 12 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please fill out the template. 2 | 3 | Read: https://k1ss.org/wiki/kiss/style-guide 4 | 5 | --- 6 | 7 | ## Description of package 8 | 9 | 10 | ## Installed manifest of package 11 | 12 | (`kiss manifest `) 13 | 14 | ``` 15 | MANIFEST HERE 16 | ``` 17 | 18 | ## New package 19 | 20 | - [ ] Latest upstream version. 21 | - [ ] I agree to maintain this package. 22 | - [ ] I agree to notify @eudaldgr if I can no longer maintain this package. 23 | 24 | ## Existing package 25 | 26 | - [ ] I am the maintainer of this package. 27 | -------------------------------------------------------------------------------- /garbage/libtorrent-rasterbar/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | cmake -B build \ 6 | -DCMAKE_INSTALL_PREFIX:PATH='/usr' \ 7 | -DCMAKE_SKIP_RPATH:BOOL='YES' \ 8 | -Dbuild_tools:BOOL='ON' \ 9 | -Dpython-bindings:BOOL='OFF' \ 10 | -Dboost-python-module-name='python' \ 11 | -DPYTHON_EXECUTABLE:FILEPATH="/usr/bin/python" \ 12 | -DPYTHON_INCLUDE_DIR:PATH="/usr/include/python" \ 13 | -DPYTHON_LIBRARY:FILEPATH="/usr/lib/libpython3.8.so" \ 14 | -Wno-dev 15 | 16 | make -C build 17 | make -C build DESTDIR="$1" install 18 | -------------------------------------------------------------------------------- /libs/libfreehand/patches/fix-build.patch: -------------------------------------------------------------------------------- 1 | diff --git a/src/lib/libfreehand_utils.cpp b/src/lib/libfreehand_utils.cpp 2 | index 439c457..32f23e0 100644 3 | --- a/src/lib/libfreehand_utils.cpp 4 | +++ b/src/lib/libfreehand_utils.cpp 5 | @@ -162,7 +162,7 @@ void libfreehand::_appendUTF16(librevenge::RVNGString &text, std::vector 9 | #include 10 | #include 11 | --- stacktraverse.c.orig 12 | +++ stacktraverse.c 13 | @@ -1,3 +1,4 @@ 14 | +#define _GNU_SOURCE 15 | #include 16 | 17 | #include "stacktraverse.h" 18 | --- test.c.orig 19 | +++ test.c 20 | @@ -1,3 +1,4 @@ 21 | +#define _GNU_SOURCE 22 | #include 23 | #include 24 | -------------------------------------------------------------------------------- /libs/libexecinfo/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | #export CFLAGS="-fno-omit-frame-pointer" 3 | for patch in *.patch; do 4 | patch -p1 < "$patch" 5 | done 6 | 7 | sed -e "/Version:/s@version@1.1@" -i libexecinfo.pc 8 | 9 | make 10 | 11 | install -Dm644 execinfo.h "$1/usr/include/execinfo.h" 12 | install -Dm644 stacktraverse.h "$1/usr/include/stacktraverse.h" 13 | install -Dm755 libexecinfo.a "$1/usr/lib/libexecinfo.a" 14 | install -Dm755 libexecinfo.so.1 "$1/usr/lib/libexecinfo.so.1" 15 | install -Dm644 libexecinfo.pc "$1/usr/lib/pkgconfig/libexecinfo.pc" 16 | ln -s /usr/lib/libexecinfo.so.1 "$1/usr/lib/libexecinfo.so" 17 | -------------------------------------------------------------------------------- /lxqt/lxqt-panel/depends: -------------------------------------------------------------------------------- 1 | alsa-lib 2 | bzip2 3 | cmake make 4 | dbus 5 | eudev 6 | expat 7 | freetype-harfbuzz 8 | glib 9 | icu 10 | kwindowsystem 11 | libICE 12 | libSM 13 | libX11 14 | libXScrnSaver 15 | libXau 16 | libXcomposite 17 | libXdamage 18 | libXext 19 | libXfixes 20 | libXrender 21 | libXxf86vm 22 | libdbusmenu-qt 23 | libdrm 24 | libexecinfo 25 | libffi 26 | liblxqt 27 | libpng 28 | libsysstat make 29 | libxcb 30 | libxkbcommon 31 | libxshmfence 32 | lxqt-globalkeys make 33 | mesa 34 | pcre2 35 | qt5 36 | qt5-svg 37 | qt5-x11extras 38 | solid 39 | xcb-util 40 | xcb-util-keysyms 41 | zlib 42 | -------------------------------------------------------------------------------- /java/gcc6-gcj/patches/320-libffi-gnulinux.patch: -------------------------------------------------------------------------------- 1 | diff --git a/libffi/closures.c.orig b/libffi/closures.c 2 | index 721ff00..22a699c 100644 3 | --- a/libffi/src/closures.c.orig 4 | +++ b/libffi/src/closures.c 5 | @@ -34,7 +34,7 @@ 6 | #include 7 | 8 | #if !FFI_MMAP_EXEC_WRIT && !FFI_EXEC_TRAMPOLINE_TABLE 9 | -# if __gnu_linux__ && !defined(__ANDROID__) 10 | +# if __linux__ && !defined(__ANDROID__) 11 | /* This macro indicates it may be forbidden to map anonymous memory 12 | with both write and execute permission. Code compiled when this 13 | option is defined will attempt to map such pages once, but if it 14 | -------------------------------------------------------------------------------- /python/python-gstreamer/patches/python-3.8-compat.patch: -------------------------------------------------------------------------------- 1 | diff --git a/meson.build b/meson.build 2 | index 1da81d5..6a80872 100644 3 | --- a/meson.build 4 | +++ b/meson.build 5 | @@ -24,7 +24,7 @@ pygobject_dep = dependency('pygobject-3.0', fallback: ['pygobject', 'pygobject_d 6 | 7 | pymod = import('python') 8 | python = pymod.find_installation(get_option('python')) 9 | -python_dep = python.dependency(required : true) 10 | +python_dep = dependency('python3-embed', fallback: ['python', 'python_dep'], required : true) 11 | 12 | python_abi_flags = python.get_variable('ABIFLAGS', '') 13 | pylib_loc = get_option('libpython-dir') 14 | -------------------------------------------------------------------------------- /extra/appstream/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | cd "AppStream-$2" 6 | 7 | patch -p1 < ../no-gtk-doc.patch 8 | 9 | meson \ 10 | --prefix=/usr \ 11 | --sysconfdir=/etc \ 12 | --localstatedir=/var \ 13 | --buildtype=plain \ 14 | -Dqt=false \ 15 | -Dmaintainer=false \ 16 | -Ddocs=false \ 17 | -Dapidocs=false \ 18 | -Dinstall-docs=false \ 19 | -Dstemming=false \ 20 | -Dvapi=true \ 21 | -Dapt-support=false \ 22 | -Dgir=true \ 23 | . output 24 | 25 | ninja -C output 26 | ninja -C output install 27 | 28 | # Remove unused stuff 29 | rm -rf "$1/usr/share/gettext" 30 | -------------------------------------------------------------------------------- /java/fastjar/patches/0001-Properly-zero-terminate-filename.patch: -------------------------------------------------------------------------------- 1 | http://cvs.savannah.gnu.org/viewvc/fastjar/jartool.c?root=fastjar&r1=1.59&r2=1.60&view=patch 2 | 3 | 2010-03-01 Richard Guenther 4 | 5 | * jartool.c (read_entries): Properly zero-terminate filename. 6 | 7 | --- a/jartool.c 2009/09/06 22:16:00 1.59 8 | +++ b/jartool.c 2010/03/01 15:38:43 1.60 9 | @@ -790,6 +790,7 @@ 10 | progname, jarfile); 11 | return 1; 12 | } 13 | + ze->filename[len] = '\0'; 14 | len = UNPACK_UB4(header, CEN_EFLEN); 15 | len += UNPACK_UB4(header, CEN_COMLEN); 16 | if (lseek (fd, len, SEEK_CUR) == -1) 17 | -------------------------------------------------------------------------------- /java/fastjar/patches/0002-Fix-write-return-value-check.patch: -------------------------------------------------------------------------------- 1 | http://cvs.savannah.gnu.org/viewvc/fastjar/jartool.c?root=fastjar&r1=1.60&r2=1.61&view=patch 2 | 3 | 2010-06-10 Chris Ball 4 | 5 | * jartool.c (add_file_to_jar): Fix write return value check. 6 | 7 | --- a/jartool.c 2010/03/01 15:38:43 1.60 8 | +++ b/jartool.c 2010/06/10 08:46:10 1.61 9 | @@ -1258,7 +1258,7 @@ 10 | exit_on_error("write"); 11 | 12 | /* write the file name to the zip file */ 13 | - if (1 == write(jfd, fname, file_name_length)) 14 | + if (-1 == write(jfd, fname, file_name_length)) 15 | exit_on_error("write"); 16 | 17 | if(verbose){ 18 | -------------------------------------------------------------------------------- /extra/appstream/patches/no-gtk-doc.patch: -------------------------------------------------------------------------------- 1 | --- a/docs/meson.build 2 | +++ b/docs/meson.build 3 | @@ -16,14 +16,7 @@ 4 | install: true, 5 | install_dir: join_paths(get_option('mandir'), 'man1'), 6 | command: [ 7 | - xsltproc, 8 | - '--nonet', 9 | - '--stringparam', 'man.output.quietly', '1', 10 | - '--stringparam', 'funcsynopsis.style', 'ansi', 11 | - '--stringparam', 'man.th.extra1.suppress', '1', 12 | - '-o', '@OUTPUT@', 13 | - 'http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl', 14 | - '@INPUT@' 15 | + 'cp', '@INPUT@', '@OUTPUT@' 16 | ] 17 | ) 18 | 19 | -------------------------------------------------------------------------------- /lxqt/upower/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DATADIRNAME=share 4 | 5 | for patch in *.patch; do 6 | patch -Np1 -i "$patch" 7 | done 8 | 9 | autoreconf -vif 10 | 11 | sed -i -e '/DISABLE_DEPRECATED/d' configure 12 | 13 | ./configure \ 14 | --prefix=/usr \ 15 | --sysconfdir=/etc \ 16 | --localstatedir=/var \ 17 | --libexecdir=/usr/lib/upower \ 18 | --disable-static \ 19 | --disable-man-pages \ 20 | --disable-tests \ 21 | --without-idevice \ 22 | --with-udevrulesdir=/usr/lib/udev/rules.d 23 | 24 | printf 'all:\n\ttrue\ninstall:\n\ttrue\nclean:\n\ttrue\n' > po/Makefile 25 | 26 | make 27 | make DESTDIR="$1" install 28 | -------------------------------------------------------------------------------- /libs/raylib/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cmake -B build \ 4 | -Wno-dev \ 5 | -D CMAKE_BUILD_TYPE=Release \ 6 | -D CMAKE_INSTALL_PREFIX=/usr \ 7 | -D CMAKE_INSTALL_LIBDIR=lib \ 8 | -D CMAKE_C_FLAGS="$CFLAGS -fPIC -w" \ 9 | -D OpenGL_GL_PREFERENCE=GLVND \ 10 | -D USE_EXTERNAL_GLFW=ON \ 11 | -D BUILD_EXAMPLES=OFF \ 12 | -D BUILD_GAMES=OFF \ 13 | -D SHARED=ON \ 14 | -D STATIC=OFF \ 15 | -D WITH_PIC=ON \ 16 | -G Ninja 17 | 18 | DESTDIR="$1" ninja -C build 19 | DESTDIR="$1" ninja -C build install 20 | 21 | # Also package header files 22 | for f in build/src/*.h; do 23 | install -Dm 644 "$f" "$1/usr/include/$(basename "$f")" 24 | done 25 | -------------------------------------------------------------------------------- /garbage/lynis/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | # stricter default perms - bug 507436 4 | mkdir -p "$1/usr/share/lynis" "$1/etc/lynis" 5 | chmod 0700 "$1/usr/share/lynis" "$1/etc/lynis" 6 | cp -r db include plugins "$1/usr/share/lynis" 7 | 8 | install -Dm755 lynis "$1/usr/sbin/lynis" 9 | install -Dm600 default.prf "$1/etc/lynis/default.prf" 10 | install -Dm600 lynis.cron "$1/etc/periodic/daily/lynis" 11 | 12 | # lynis-doc 13 | install -Dm644 CHANGELOG.md FAQ README -t "$1/usr/share/doc/lynis/" 14 | install -Dm644 lynis.8 "$1/usr/share/man/man8/lynis.8" 15 | 16 | mkdir -p "$1/usr/share/bash-completion/completions/" 17 | install -Dm644 extras/bash_completion.d/lynis \ 18 | "$1/usr/share/bash-completion/completions/lynis" 19 | -------------------------------------------------------------------------------- /java/gcc6-gcj/patches/050_all_libiberty-asprintf.patch: -------------------------------------------------------------------------------- 1 | 2008-07-25 Magnus Granberg 2 | 3 | * include/libiberty.h (asprintf): Don't declare if defined as a macro 4 | 5 | --- a/include/libiberty.h 6 | +++ b/include/libiberty.h 7 | @@ -626,8 +626,11 @@ extern int pwait (int, int *, int); 8 | /* Like sprintf but provides a pointer to malloc'd storage, which must 9 | be freed by the caller. */ 10 | 11 | +/* asprintf may be declared as a macro by glibc with __USE_FORTIFY_LEVEL. */ 12 | +#ifndef asprintf 13 | extern int asprintf (char **, const char *, ...) ATTRIBUTE_PRINTF_2; 14 | #endif 15 | +#endif 16 | 17 | /* Like asprintf but allocates memory without fail. This works like 18 | xmalloc. */ 19 | -------------------------------------------------------------------------------- /gfx/inkscape/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | export CXXFLAGS="$CXXFLAGS -std=c++11" 5 | 6 | patch -p1 -i fix-Werror.patch 7 | 8 | cmake -B build \ 9 | -DCMAKE_INSTALL_PREFIX=/usr \ 10 | -DCMAKE_INSTALL_LIBDIR=lib \ 11 | -DCMAKE_VERBOSE_MAKEFILE=ON \ 12 | -DENABLE_POPPLER_CAIRO=ON \ 13 | -DPOPPLER_INCLUDE_DIR=/usr/include/poppler \ 14 | -DBUILD_SHARED_LIBS=True \ 15 | -DBUILD_STATIC_LIBS=False \ 16 | -DBUILD_TESTS=OFF \ 17 | -DWITH_GNOME_VFS=OFF \ 18 | -DWITH_NLS=OFF \ 19 | -DWITH_DBUS=OFF \ 20 | -DWITH_LIBCDR=OFF \ 21 | -DWITH_LIBVISIO=OFF \ 22 | -DWITH_LIBWPG=OFF \ 23 | -DWITH_IMAGE_MAGICK=OFF 24 | 25 | cmake --build build 26 | cmake --install build 27 | --------------------------------------------------------------------------------