Compare commits

..

25 Commits

Author SHA1 Message Date
656ba62171 Fixed upstream checksum revision 2024-07-13 19:48:17 -04:00
8e8709d57f Updated eget-bin 2024-07-08 14:23:06 -04:00
a63c76f138 Updated bcrawl 2023-03-02 17:00:19 -05:00
a0d0bf540c Updated eget-bin to 1.3.3 2023-03-01 20:54:18 -05:00
72c6ca9cfc Updated eget-bin to 1.2.0 2022-08-25 14:43:21 -04:00
8b3500bf01 Updated httprobe-bin to 0.2 2022-06-21 12:52:39 -04:00
555f4f1172 Updated Packages 2022-06-07 12:07:09 -04:00
819c7644a4 Updated Grabber to 7.8.1 2022-04-26 13:46:02 -04:00
72211913ae Updated imgbrd-grabber-appimage to 7.8.0 2022-03-30 14:54:21 -04:00
c1c4077bb8 Updated bcrawl to 1.36 2022-03-30 14:46:02 -04:00
8bd03a8795 Added eget-bin
Added eget-bin-1.0.1-1
2022-03-25 19:31:16 -04:00
61ec226830 Updated httprobe-bin
Fixed name when installed to /usr/bin
2022-03-25 19:30:06 -04:00
83163acf50 Added bcrawl 1.35.5c 2022-03-09 19:19:41 -05:00
b6b02e21ce openmw-tes3mp 2022-03-09 19:18:00 -05:00
977eb40002 Added temp bcrawl pkg untill it gets fixed 2022-02-20 17:57:23 -05:00
87cb09145f Updated Grabber to 7.7.1 2022-01-12 15:07:23 -05:00
e34c111006 Updated Grabber to 7.7.0 2021-12-27 18:52:21 -05:00
e70b3e4998 Fixed typo in pkg's name 2021-11-19 00:14:36 -05:00
c5f5528269 Added xcloud-desktop-appimage 2021-11-19 00:05:01 -05:00
86679547e4 Updated imgbrd-grabber-appimage 7.6.2 2021-09-02 14:12:09 -04:00
e3da13ed34 Updated imgbrd-grabber-appimage 7.6.1 2021-08-25 07:46:20 -04:00
43b77e19fb Updated imgbrd-grabber-appimage 2021-07-19 23:18:40 -04:00
a792d0799e Added imgbrd-grabber-appimage 2021-05-10 17:08:34 -04:00
c9f36bb81b Added missing .SRCINFO 2021-05-07 17:15:56 -04:00
753b876ace Added httprobe-bin package
Added:
- httprobe-bin-0.1.2-1
2021-05-07 16:49:48 -04:00
8 changed files with 284 additions and 0 deletions

80
bcrawl/PKGBUILD Normal file
View File

@ -0,0 +1,80 @@
# Maintainer: Dmitry Kharitonov <arch[at]nano-model[dot]com>
pkgname=bcrawl
pkgver=1.38b
pkgrel=1
pkgdesc='Continuation of X-Crawl fork of Dungeon Crawl Stone Soup roguelike with new content'
arch=('i686' 'x86_64')
url='https://github.com/b-crawl/bcrawl'
depends=('lua51' 'sdl2_image' 'sqlite' 'glu' 'ttf-dejavu' 'freetype2')
makedepends=('flex' 'gendesk' 'mesa')
optdepends=('advancecomp: for recompressing the tilesheets'
'pngcrush: for recompressing the tilesheets')
conflicts=('crawl' 'stone-soup-tile' 'bcrawl-git')
provides=('bcrawl')
license=('GPL' 'BSD' 'MIT' 'ZLIB' 'APACHE' 'custom:CC0' 'custom')
source=("https://github.com/b-crawl/bcrawl/archive/bcrawl-${pkgver}.tar.gz")
sha256sums=('9119841f399d413a56958e316f6193d2292c396bfcd12f64fd30d21b8e32892d')
# used by gendesk to create .desktop file
_exec=('bcrawl-tiles')
_name=('Dungeon Crawl Stone Soup (bcrawl fork)')
package() {
cd "$srcdir"
gendesk -f -n --pkgname "$pkgname" --pkgdesc "$pkgdesc" \
--exec 'bcrawl-tiles' --name 'Dungeon Crawl Stone Soup (bcrawl fork)' PKGBUILD
cd "bcrawl-bcrawl-${pkgver}/crawl-ref/source"
# 0.16.0 weirdness
sed -i 's|SDL_main.h|SDL2/&|' main.cc
# git tarball weirdness
echo "$pkgver" > util/release_ver
# adjust makefile to use /usr/bin, owner root:root,
# disable setgid on executable
sed -i 's|bin_prefix := bin|bin_prefix := usr/bin|' Makefile
sed -i 's/INSTALL_UGRP := games:games/INSTALL_UGRP := root:root/' Makefile
sed -i 's|MCHMOD := 2755|MCHMOD := 755|' Makefile
# first build and install tiles version
make -j8 GAME=bcrawl \
DESTDIR="${pkgdir}" \
DATADIR="/usr/share/${pkgname}/data" \
SAVEDIR="~/.bcrawl" \
USE_UNICODE=y \
TILES=y \
install
# rename tiles executable to avoid clashing with console crawl
mv "${pkgdir}/usr/bin/bcrawl" "${pkgdir}/usr/bin/bcrawl-tiles"
# then build and install console version
make GAME=bcrawl \
DESTDIR="${pkgdir}" \
DATADIR="/usr/share/${pkgname}/data" \
SAVEDIR="~/.bcrawl" \
USE_UNICODE=y \
install
# install crawl license
install -D -m644 ../../LICENSE \
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
install -D -m644 ../docs/license/* \
"${pkgdir}/usr/share/licenses/${pkgname}"
# install icon and .desktop file
install -D -m644 dat/tiles/stone_soup_icon-32x32.png \
"${pkgdir}/usr/share/pixmaps/${pkgname}.png"
install -D -m644 "${srcdir}/${pkgname}.desktop" \
"${pkgdir}/usr/share/applications/${pkgname}.desktop"
}

24
eget-bin/PKGBUILD Normal file
View File

@ -0,0 +1,24 @@
# Maintainer: Rain Clark <rain AT melonbread DOT dev>
pkgname=eget-bin
pkgver=1.3.4
pkgrel=2
pkgdesc="Easily install prebuilt binaries from GitHub"
arch=('i686' 'x86_64')
url="https://github.com/zyedidia/eget"
license=('MIT')
source_i686=(https://github.com/zyedidia/eget/releases/download/v${pkgver}/eget-${pkgver}-linux_386.tar.gz)
source_x86_64=(https://github.com/zyedidia/eget/releases/download/v${pkgver}/eget-${pkgver}-linux_amd64.tar.gz)
sha256sums_i686=('6dad370ce3d1bb882ae64937e64f0739059117c467586ed1a016f1bb5fa5b198')
sha256sums_x86_64=('c6b3da99e494e14a9f8c2877f9eb5891d573a95f436ecba7013cfb7d0992abf5')
package() {
mkdir -p ${pkgdir}/usr/bin
install ${srcdir}/eget-*/eget ${pkgdir}/usr/bin/eget
mkdir -p ${pkgdir}/usr/share/man/man1
gzip ${srcdir}/eget-*/eget.1
cp ${srcdir}/eget-*/eget.1.gz ${pkgdir}/usr/share/man/man1
}

20
httprobe-bin/PKGBUILD Normal file
View File

@ -0,0 +1,20 @@
# Maintainer: Rain Clark <rain AT melonbread DOT dev>
pkgname=httprobe-bin
pkgver=0.2
pkgrel=2
pkgdesc="Take a list of domains and probe for working HTTP and HTTPS servers"
arch=('i686' 'x86_64')
url="https://github.com/tomnomnom/httprobe"
license=('MIT')
source_i686=(https://github.com/tomnomnom/httprobe/releases/download/v${pkgver}/httprobe-linux-386-${pkgver}.tgz)
source_x86_64=(https://github.com/tomnomnom/httprobe/releases/download/v${pkgver}/httprobe-linux-amd64-${pkgver}.tgz)
sha256sums_i686=('8502e5942c132a8fa63cfe236720a92022851b2a3629c65ccc95d38eaf9c55e1')
sha256sums_x86_64=('4a43ae3cb355c698b811f4ddf1da117ad215984a1187997deb41f89a5c5fff40')
package() {
mkdir -p ${pkgdir}/usr/bin
install ${srcdir}/httprobe ${pkgdir}/usr/bin/httprobe
}

View File

@ -0,0 +1,36 @@
# Maintainer: Rain Clark <rain AT melonbread DOT dev>
pkgname=imgbrd-grabber-appimage
pkgver=7.9.0
pkgrel=1
pkgdesc="Very customizable imageboard/booru downloader with powerful filenaming features."
arch=('x86_64')
url="https://github.com/Bionus/imgbrd-grabber"
license=('Apache')
depends=('hicolor-icon-theme' 'zlib' 'fuse')
makedepends=('p7zip')
_pkgname="Grabber_v$pkgver-$arch.AppImage"
_upkgname=grabber
noextract=('$_pkgname')
options=('!strip')
source=(https://github.com/Bionus/imgbrd-grabber/releases/download/v${pkgver}/${_pkgname})
sha256sums=('aa3f0b4b55f9d4c28cecdc2f1d5d2bd6add4172ba62ca1cb66c3806a52b9528f')
prepare() {
cd "${srcdir}"
7z x "${srcdir}/$_pkgname" $_upkgname.desktop usr/share/icons/hicolor/128x128/apps/$_upkgname.png
sed -i "s/Exec=Grabber/Exec=\/usr\/bin\/$_upkgname/" $_upkgname.desktop
}
package() {
cd "${srcdir}"
install -Dm755 "$_pkgname" "${pkgdir}/opt/$_upkgname/$_upkgname.AppImage"
install -Dm644 "$_upkgname.desktop" "${pkgdir}/usr/share/applications/$_upkgname.desktop"
install -Dm644 "usr/share/icons/hicolor/128x128/apps/$_upkgname.png" "${pkgdir}/usr/share/icons/hicolor/128x128/apps/$_upkgname.png"
mkdir "${pkgdir}/usr/bin"
ln -s "/opt/$_upkgname/$_upkgname.AppImage" "${pkgdir}/usr/bin/$_upkgname"
}

77
openmw-tes3mp/PKGBUILD Normal file
View File

@ -0,0 +1,77 @@
# Maintainer: Volk_Milit (aka Ja'Virr-Dar) <javirrdar@gmail.com>
# Maintainer: Gennadiy Chernyshyk <genaloner@gmail.com>
# PKGBUILD source: https://github.com/TES3MP/openmw-tes3mp
# Special thanks to Grim Kriegor who provide tarball and make special script for easy build TES3MP: https://github.com/GrimKriegor/TES3MP-deploy/tree/development
pkgname=openmw-tes3mp
pkgver=0.8.0
pkgrel=1
pkgdesc="TES3MP is a project aiming to add multiplayer functionality to OpenMW, a free and open source recreation of the popular Bethesda Softworks game \"The Elder Scrolls III: Morrowind\"."
arch=('x86_64')
url="http://tes3mp.com"
license=('GPL3' 'custom')
depends=('qt5-base' 'libxt')
optdepends=('openmw: create initial engine configuration files')
conflicts=("${pkgname%-git}")
provides=("${pkgname%-git}")
source=("$pkgname.tar.gz"::"https://github.com/TES3MP/TES3MP/releases/download/tes3mp-0.8.0/tes3mp-GNU+Linux-x86_64-release-0.8.0-4476609872-f92ffd4088.tar.gz"
"https://raw.githubusercontent.com/TES3MP/openmw-tes3mp/$pkgver/files/tes3mp/tes3mp_logo.png"
"tes3mp-browser.desktop")
sha256sums=("6fdd7ba30c24563f76332e7e492f92554c83b8fd1d6df6858344b65701c8a6d2"
"861e5e8cc7ddec2dbfb842d68cdd45e7cc564079b9cb37ad113ff140bf424fd9"
"ddccf2f35e41c2cbb35816f3bbfc53a9dd5809cd2830e8e324f45550852f6408")
prepare() {
cd "$srcdir/TES3MP"
# Remove all .git files
find . -name "*git*" -exec rm -rf {} +
# Remove all *.a files from lib
rm -f lib/*.a
# Remove junk files
rm tes3mp-package-info.txt
# Remove OpenMW junk files
rm bsatool*
rm esmtool*
rm openmw*
}
package() {
# Install .desktop files
install -Dm644 tes3mp-browser.desktop "$pkgdir/usr/share/applications/tes3mp-browser.desktop"
# Icon for .desktop files
install -Dm644 tes3mp_logo.png "$pkgdir/usr/share/pixmaps/tes3mp.png"
# Copy files into /usr/local/etc/openmw to make TES3MP works with home settings
cd "$srcdir/TES3MP"
install -d "$pkgdir/usr/local/etc/openmw"
install -Dm644 tes3mp-server-default.cfg "$pkgdir/usr/local/etc/openmw/"
install -Dm644 tes3mp-client-default.cfg "$pkgdir/usr/local/etc/openmw/"
# Copy licenses
install -d "$pkgdir/usr/share/licenses"
install -Dm 644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
install -Dm 644 tes3mp-credits.md "$pkgdir/usr/share/licenses/$pkgname/tes3mp-credits.md"
# Change copying in launcher script for /usr/local/etc/openmw/ directory
sed -i '18c\\t\tcp -f /usr/local/etc/openmw/tes3mp-server-default.cfg "$TES3MP_HOME"/tes3mp-server.cfg' tes3mp-prelaunch
sed -i '43c\\t\tcp -f /usr/local/etc/openmw/tes3mp-client-default.cfg "$TES3MP_HOME"/tes3mp-client.cfg' tes3mp-prelaunch
# Main
cd "${srcdir}"
install -d "$pkgdir/opt"
mv TES3MP "$pkgdir/opt/$pkgname"
install -d "$pkgdir/usr/bin"
ln -s "$pkgdir/opt/$pkgname/tes3mp" "${pkgdir}/usr/bin"
ln -s "$pkgdir/opt/$pkgname/tes3mp-server" "$pkgdir/usr/bin"
ln -s "$pkgdir/opt/$pkgname/tes3mp-browser" "$pkgdir/usr/bin"
}
# vim:set ts=2 sw=2 et:

View File

@ -0,0 +1,11 @@
[Desktop Entry]
Type=Application
Name=TES3MP Server Browser
Name[ru_RU]=Браузер серверов TES3MP
Comment=TES3MP server overview
Comment[ru_RU]=Обзор серверов TES3MP
Path=/opt/openmw-tes3mp/
Exec=/opt/openmw-tes3mp/tes3mp-browser
Icon=tes3mp
Terminal=false
Categories=Game;

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 KiB

View File

@ -0,0 +1,36 @@
# Maintainer: Rain Clark <rain AT melonbread DOT dev>
pkgname=xcloud-desktop-appimage
pkgver=1.0.9
pkgrel=1
pkgdesc="An unoffical desktop app for the XCloud web beta"
arch=('x86_64')
url="https://github.com/AAGaming00/xcloud-desktop"
license=('MIT')
depends=('hicolor-icon-theme' 'zlib' 'fuse')
makedepends=('p7zip')
_pkgname="XCloud-$pkgver.AppImage"
_upkgname=xcloud
noextract=('$_pkgname')
options=('!strip')
source=(https://github.com/AAGaming00/xcloud-desktop/releases/download/v${pkgver}/${_pkgname})
sha256sums=('bcc0d44f6923e157fa0ae0dffaafe6356733053bd0ae3e50194ae1aca7088c45')
prepare() {
cd "${srcdir}"
7z x "${srcdir}/$_pkgname" $_upkgname.desktop usr/share/icons/hicolor/256x256/apps/$_upkgname.png
sed -i "s/Exec=Grabber/Exec=\/usr\/bin\/$_upkgname/" $_upkgname.desktop
}
package() {
cd "${srcdir}"
install -Dm755 "$_pkgname" "${pkgdir}/opt/$_upkgname/$_upkgname.AppImage"
install -Dm644 "$_upkgname.desktop" "${pkgdir}/usr/share/applications/$_upkgname.desktop"
install -Dm644 "usr/share/icons/hicolor/256x256/apps/$_upkgname.png" "${pkgdir}/usr/share/icons/hicolor/256x256/apps/$_upkgname.png"
mkdir "${pkgdir}/usr/bin"
ln -s "/opt/$_upkgname/$_upkgname.AppImage" "${pkgdir}/usr/bin/$_upkgname"
}