Compare commits

..

2 Commits

Author SHA1 Message Date
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
4 changed files with 90 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# Maintainer: Dmitry Kharitonov <arch[at]nano-model[dot]com>
pkgname=bcrawl
pkgver=1.35.4c
pkgver=1.35.5c
pkgrel=1
pkgdesc='Continuation of X-Crawl fork of Dungeon Crawl Stone Soup roguelike with new content'
arch=('i686' 'x86_64')
@ -14,7 +14,7 @@ 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=('c4ae9112c1f25241fd1454222dc46ceb44c43cdf54a83090a5f7bfb8473614a6')
sha256sums=('800e80e2c176fe8d17d4d7d55ce205bd9fa348ef4260aab907ae4824727c5341')
# used by gendesk to create .desktop file
_exec=('bcrawl-tiles')

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