This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgname=opera-ffmpeg | |
pkgver=52.0.2743.82 | |
pkgrel=1 | |
pkgdesc='Additional support for proprietary codecs for opera.' | |
arch=('x86_64') | |
url="https://ffmpeg.org/" | |
license=('LGPL2.1') | |
source=("http://repo.herecura.eu/herecura/x86_64/${pkgname}-codecs-${pkgver}-1-x86_64.pkg.tar.xz") | |
package() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgname=xclip | |
pkgver=0.12.20160314 | |
pkgrel=1 | |
_commit=0a1bbcc | |
pkgdesc='Command line interface to the X11 clipboard' | |
url='https://github.com/astrand/xclip' | |
arch=('x86_64') | |
license=('GPL') | |
depends=('libxmu') | |
source=("https://github.com/astrand/xclip/tarball/${_commit}/xclip.tar.gz") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
get_info() { | |
for package in $(kcp -lN); do | |
kcp -V $package | |
done | |
} | |
if [[ $# -eq 0 ]]; then | |
get_info | |
else |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgname=megasync | |
pkgver=2.7.1 | |
pkgrel=1 | |
pkgdesc="Sync your files to your Mega account. Official app" | |
arch=('x86_64') | |
url="http://mega.nz" | |
license=('custom:Mega License') | |
depends=('openssl' 'c-ares' 'libgcrypt' 'crypto++' 'qt' 'libpng' 'sqlite' 'ca-certificates') | |
makedepends=('git' 'qt') | |
source=("git://github.com/meganz/MEGAsync.git") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ./kcp --information otter-browser-git | |
version 0.9.06.r56-1 | |
description Otter Browser, project aiming to recreate classic Opera (12.x) using Qt5. | |
url http://www.otter-browser.org | |
license GPL3 | |
arch x86_64 | |
depends qt5-base>=5.5.0 qt5-webkit>=5.5.0 qt5-script>=5.5.0 desktop-file-utils hicolor-icon-theme qtwebengine | |
makedepends git cmake qt5-tools>=5.5.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ $# -ne 1 ]; then | |
echo "Usage : $0 <file to compress>" | |
exit 1 | |
fi | |
file=${1%%/} | |
tar c "$file" | lz4 -z - "$file.tar.lz4" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgname=python3-poppler-qt5 | |
_pkgname=python-poppler-qt5 | |
pkgver=0.24.2 | |
pkgrel=1 | |
pkgdesc="A Python 3 binding to poppler-qt5" | |
arch=('x86_64') | |
url="https://github.com/wbsoft/python-poppler-qt5/" | |
license=('LGPL') | |
depends=('pyqt5-python3' 'poppler-qt5' 'python3') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
running build_ext | |
building 'popplerqt5' extension | |
/usr/bin/sip -I /usr/share/sip -t POPPLER_V0_28_0 -c build/temp.linux-x86_64-3.4 -b build/temp.linux-x86_64-3.4/poppler-qt5.sbf -I /usr/share/sip/PyQt5 -t WS_X11 -t Qt_5_4_1 poppler-qt5.sip | |
sip: QDomElement is undefined | |
error: command '/usr/bin/sip' failed with exit status 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def read_grub(): | |
global menu_entries | |
grub_path = os.path.join(install_path, 'boot', 'grub', 'grub.cfg') | |
o = False | |
with open(grub_path, 'r') as f: | |
for l in f: | |
if l.strip()[:9] == 'menuentry' and l[-2] == '{': | |
o = True | |
e = {} | |
i1 = l.find("'") + 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# encoding: utf-8 | |
# === This file is part of Calamares - <http://github.com/calamares> === | |
# | |
# Copyright 2014, Anke Boersma <[email protected]> | |
# Copyright 2014, Benjamin Vaudour <[email protected]> | |
# | |
# Calamares is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or |