Autogenerated commit at 2024-09-27 14:24:54.886723+00:00
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
pkgbase = albert
|
||||
pkgdesc = A sophisticated standalone keyboard launcher
|
||||
pkgver = 0.26.3
|
||||
pkgver = 0.26.4
|
||||
pkgrel = 1
|
||||
url = https://github.com/albertlauncher
|
||||
arch = x86_64
|
||||
@ -20,7 +20,7 @@ pkgbase = albert
|
||||
optdepends = libarchive: documentation plugin
|
||||
optdepends = libqalculate: calculator plugin
|
||||
optdepends = python: python extension
|
||||
source = https://github.com/albertlauncher/albert/releases/download/v0.26.3/v0.26.3.tar.gz
|
||||
sha512sums = f3367226a78937607aa2feb9bf0ff3cb453d5213d141af501f858b8d7f57dc81024a261ba5feaf52219a03718895cc3551eeab337163fb07c0339ada7c0b0519
|
||||
source = https://github.com/albertlauncher/albert/releases/download/v0.26.4/v0.26.4.tar.gz
|
||||
sha512sums = 4dbb78dcc768b9d76aae7bdd251bb078dd42ee53f98ae88962b4de555714d1e5e935c1c278220e5c5ec36072876d7d3ba45e5d706615ca88eae09fc61d75504a
|
||||
|
||||
pkgname = albert
|
||||
|
@ -3,7 +3,7 @@
|
||||
# Contributor: Manuel Schneider <manuelschneid3r at googles mail>
|
||||
|
||||
pkgname=albert
|
||||
pkgver=0.26.3
|
||||
pkgver=0.26.4
|
||||
pkgrel=1
|
||||
pkgdesc="A sophisticated standalone keyboard launcher"
|
||||
arch=('x86_64')
|
||||
@ -60,4 +60,4 @@ package() {
|
||||
install -Dm644 "$srcdir/$pkgname/LICENSE.md" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
||||
}
|
||||
|
||||
sha512sums=('f3367226a78937607aa2feb9bf0ff3cb453d5213d141af501f858b8d7f57dc81024a261ba5feaf52219a03718895cc3551eeab337163fb07c0339ada7c0b0519')
|
||||
sha512sums=('4dbb78dcc768b9d76aae7bdd251bb078dd42ee53f98ae88962b4de555714d1e5e935c1c278220e5c5ec36072876d7d3ba45e5d706615ca88eae09fc61d75504a')
|
||||
|
27
qv2ray/.SRCINFO
Normal file
27
qv2ray/.SRCINFO
Normal file
@ -0,0 +1,27 @@
|
||||
pkgbase = qv2ray
|
||||
pkgdesc = Cross-platform V2ray Client written in Qt (Stable Release)
|
||||
pkgver = 2.7.0
|
||||
pkgrel = 1
|
||||
url = https://github.com/Qv2ray/Qv2ray
|
||||
arch = x86_64
|
||||
license = GPL3
|
||||
makedepends = git
|
||||
makedepends = make
|
||||
makedepends = qt5-tools
|
||||
makedepends = which
|
||||
makedepends = gcc
|
||||
makedepends = qt5-declarative
|
||||
makedepends = grpc-cli>=1.27.0
|
||||
makedepends = cmake
|
||||
makedepends = ninja
|
||||
depends = hicolor-icon-theme
|
||||
depends = qt5-base>5.11.0
|
||||
depends = grpc>=1.27.0
|
||||
depends = qt5-svg
|
||||
optdepends = v2ray: use system v2ray core.
|
||||
provides = qv2ray
|
||||
conflicts = qv2ray
|
||||
source = Qv2ray::git+https://github.com/Qv2ray/Qv2ray
|
||||
sha512sums = SKIP
|
||||
|
||||
pkgname = qv2ray
|
53
qv2ray/PKGBUILD
Normal file
53
qv2ray/PKGBUILD
Normal file
@ -0,0 +1,53 @@
|
||||
# Maintainer: Neboer <rubinposter at gmail dot com>
|
||||
# Contributor: DuckSoft <realducksoft at gmail dot com>
|
||||
# Contributor: ArielAxionL <i at axionl dot me>
|
||||
# Contributor: Leroy.H.Y <me at lhy0403 dot top>
|
||||
pkgname=qv2ray
|
||||
pkgver=2.7.0
|
||||
pkgrel=1
|
||||
pkgdesc="Cross-platform V2ray Client written in Qt (Stable Release)"
|
||||
arch=('x86_64')
|
||||
url='https://github.com/Qv2ray/Qv2ray'
|
||||
license=('GPL3')
|
||||
depends=('hicolor-icon-theme' 'qt5-base>5.11.0' 'grpc>=1.27.0' 'qt5-svg')
|
||||
optdepends=('v2ray: use system v2ray core.')
|
||||
makedepends=('git' 'make' 'qt5-tools' 'which' 'gcc' 'qt5-declarative'
|
||||
'grpc-cli>=1.27.0' 'cmake' 'ninja')
|
||||
provides=('qv2ray')
|
||||
conflicts=('qv2ray')
|
||||
|
||||
source=('Qv2ray::git+https://github.com/Qv2ray/Qv2ray')
|
||||
|
||||
sha512sums=('SKIP')
|
||||
|
||||
pkgver() {
|
||||
printf "%s" $(cat ${srcdir}/Qv2ray/makespec/VERSION)
|
||||
}
|
||||
|
||||
prepare() {
|
||||
cd "${srcdir}/Qv2ray"
|
||||
git submodule update --recursive --init
|
||||
}
|
||||
|
||||
build() {
|
||||
export _QV2RAY_BUILD_INFO_="Qv2ray from AUR"
|
||||
export _QV2RAY_BUILD_EXTRA_INFO_="(Manual Build) $(uname -a | cut -d " " -f3,13)"
|
||||
|
||||
cd "${srcdir}/Qv2ray"
|
||||
mkdir -p build && cd build
|
||||
cmake .. \
|
||||
-DCMAKE_INSTALL_PREFIX=${pkgdir}/usr \
|
||||
-DQV2RAY_ZXING_PROVIDER="module" \
|
||||
-DQV2RAY_TRANSLATION_PATH="/usr/share/qv2ray/lang" \
|
||||
-DQV2RAY_DEFAULT_VASSETS_PATH="/usr/share/v2ray" \
|
||||
-DQV2RAY_DEFAULT_VCORE_PATH="/usr/bin/v2ray" \
|
||||
-DQV2RAY_DISABLE_AUTO_UPDATE=on \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-GNinja
|
||||
ninja
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/Qv2ray"
|
||||
ninja -C "build" install
|
||||
}
|
21
yed/.SRCINFO
Normal file
21
yed/.SRCINFO
Normal file
@ -0,0 +1,21 @@
|
||||
pkgbase = yed
|
||||
pkgdesc = Very powerful graph editor written in java
|
||||
pkgver = 3.24
|
||||
pkgrel = 1
|
||||
epoch = 1
|
||||
url = http://www.yworks.com/en/products_yed_about.html
|
||||
install = yed.install
|
||||
arch = any
|
||||
license = custom
|
||||
depends = hicolor-icon-theme
|
||||
depends = java-runtime
|
||||
source = https://www.yworks.com/resources/yed/demo/yEd-3.24.zip
|
||||
source = yed.desktop
|
||||
source = yed
|
||||
source = graphml+xml-mime.xml
|
||||
sha256sums = 842909f6e4c15399b660f316056499e63e931f95ade43d850045d852d3128947
|
||||
sha256sums = cc6957cde6eba0d82ea523b0257f8c91fd1e330a1e2ad7d64890e48a2450aa98
|
||||
sha256sums = 731b54c6e731704efe9847d78e2df474d59042452ace29d2786d76891295249e
|
||||
sha256sums = e751b69ed8a25faf46d4e4016ed8f1774abc88679067934a6081348e3d6fc332
|
||||
|
||||
pkgname = yed
|
54
yed/PKGBUILD
Normal file
54
yed/PKGBUILD
Normal file
@ -0,0 +1,54 @@
|
||||
# Maintainer: Michael Lass <bevan@bi-co.net>
|
||||
# Contributor: Sebastian Wolf < sebastian at melonkru dot de >
|
||||
# Contributor: gost < gostrc at gmail dot com >
|
||||
# Contributor: Mikolaj Pastuszko <deluminathor@gmail.com>
|
||||
# Contributor: Stefan Seemayer < mail at semicolonsoftware dot de >
|
||||
# Contributor: Gordin < 9ordin @t gmail dot com >
|
||||
# Contributor: David Davis < davisd<a@t>davisd.com >
|
||||
|
||||
# This PKGBUILD is maintained on github:
|
||||
# https://github.com/michaellass/AUR
|
||||
|
||||
pkgname=yed
|
||||
pkgver=3.24
|
||||
pkgrel=1
|
||||
epoch=1
|
||||
pkgdesc='Very powerful graph editor written in java'
|
||||
arch=('any')
|
||||
url='http://www.yworks.com/en/products_yed_about.html'
|
||||
license=('custom')
|
||||
depends=('hicolor-icon-theme' 'java-runtime')
|
||||
source=("https://www.yworks.com/resources/yed/demo/yEd-${pkgver}.zip"
|
||||
'yed.desktop'
|
||||
'yed'
|
||||
'graphml+xml-mime.xml')
|
||||
sha256sums=('842909f6e4c15399b660f316056499e63e931f95ade43d850045d852d3128947'
|
||||
'cc6957cde6eba0d82ea523b0257f8c91fd1e330a1e2ad7d64890e48a2450aa98'
|
||||
'731b54c6e731704efe9847d78e2df474d59042452ace29d2786d76891295249e'
|
||||
'e751b69ed8a25faf46d4e4016ed8f1774abc88679067934a6081348e3d6fc332')
|
||||
|
||||
install=yed.install
|
||||
|
||||
package() {
|
||||
# Install jars
|
||||
install -Dm644 ${srcdir}/yed-${pkgver}/yed.jar ${pkgdir}/usr/share/java/yed/yed.jar
|
||||
install -dm755 ${pkgdir}/usr/share/java/yed/lib
|
||||
install -m644 ${srcdir}/yed-${pkgver}/lib/* ${pkgdir}/usr/share/java/yed/lib/
|
||||
|
||||
# Install license
|
||||
install -Dm644 ${srcdir}/yed-${pkgver}/license.html ${pkgdir}/usr/share/licenses/yed/license.html
|
||||
|
||||
# Install icons
|
||||
for n in $(ls ${srcdir}/yed-${pkgver}/icons/yed*.png | xargs -n1 basename | sed s/[^0-9]//g); do
|
||||
install -Dm644 ${srcdir}/yed-${pkgver}/icons/yed${n}.png ${pkgdir}/usr/share/icons/hicolor/${n}x${n}/apps/yed.png
|
||||
done
|
||||
|
||||
# Install mime definition
|
||||
install -Dm644 ${srcdir}/graphml+xml-mime.xml ${pkgdir}/usr/share/mime/packages/graphml+xml-mime.xml
|
||||
|
||||
# Install .desktop file
|
||||
install -Dm644 ${srcdir}/yed.desktop ${pkgdir}/usr/share/applications/yed.desktop
|
||||
|
||||
# Install run script
|
||||
install -Dm755 ${srcdir}/yed ${pkgdir}/usr/bin/yed
|
||||
}
|
8
yed/graphml+xml-mime.xml
Normal file
8
yed/graphml+xml-mime.xml
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0"?>
|
||||
<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>
|
||||
<mime-type type="application/x-graphml+xml">
|
||||
<comment>yEd graphml file (xml format)</comment>
|
||||
<glob pattern="*.graphml"/>
|
||||
<generic-icon name="x-application-graphml+xml"/>
|
||||
</mime-type>
|
||||
</mime-info>
|
3
yed/yed
Normal file
3
yed/yed
Normal file
@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
/usr/bin/java -jar /usr/share/java/yed/yed.jar "$@"
|
9
yed/yed.desktop
Normal file
9
yed/yed.desktop
Normal file
@ -0,0 +1,9 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Icon=yed
|
||||
Exec=yed %f
|
||||
StartupNotify=true
|
||||
StartupWMClass=com-yworks-A-yEd
|
||||
Name=yEd Graph Editor
|
||||
MimeType=application/x-graphml+xml;
|
||||
Categories=Application;Graphics;VectorGraphics;Java;
|
13
yed/yed.install
Normal file
13
yed/yed.install
Normal file
@ -0,0 +1,13 @@
|
||||
post_upgrade() {
|
||||
post_install $1
|
||||
}
|
||||
|
||||
post_install() {
|
||||
echo ">>> You have to read and accept the license agreement under"
|
||||
echo ">>> /usr/share/licenses/yed/license.html before using yEd."
|
||||
}
|
||||
|
||||
op=$1
|
||||
shift
|
||||
$op $*
|
||||
|
Reference in New Issue
Block a user