[arch-commits] Commit in godot/repos/community-x86_64 (PKGBUILD PKGBUILD)

Alexander Rødseth arodseth at gemini.archlinux.org
Thu Mar 24 11:53:13 UTC 2022


    Date: Thursday, March 24, 2022 @ 11:53:13
  Author: arodseth
Revision: 1174691

archrelease: copy trunk to community-x86_64

Added:
  godot/repos/community-x86_64/PKGBUILD
    (from rev 1174690, godot/trunk/PKGBUILD)
Deleted:
  godot/repos/community-x86_64/PKGBUILD

----------+
 PKGBUILD |  134 ++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 67 insertions(+), 67 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2022-03-24 11:45:16 UTC (rev 1174690)
+++ PKGBUILD	2022-03-24 11:53:13 UTC (rev 1174691)
@@ -1,67 +0,0 @@
-# Maintainer: Alexander F. Rødseth <xyproto at archlinux.org>
-# Contributor: loqs
-# Contributor: Jorge Araya Navarro <jorgejavieran at yahoo.com.mx>
-# Contributor: Cristian Porras <porrascristian at gmail.com>
-# Contributor: Matthew Bentley <matthew at mtbentley.us>
-
-pkgname=godot
-pkgver=3.4.4
-pkgrel=1
-pkgdesc='Advanced cross-platform 2D and 3D game engine'
-url='https://godotengine.org'
-license=(MIT)
-arch=(x86_64)
-makedepends=(gcc scons yasm alsa-lib pulseaudio)
-depends=(embree freetype2 libglvnd libtheora libvorbis libvpx libwebp
-         libwslay libxcursor libxi libxinerama libxrandr mbedtls miniupnpc opusfile)
-optdepends=(pipewire-alsa pipewire-pulse)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/godotengine/godot/archive/$pkgver-stable.tar.gz")
-b2sums=('c1e93eaec776967ef6a2a4237776e022075497a36c39bf59ca7003de3311729c7a6465698d6beff652274675a0be73fe7e00a880c127bbb33888d360f47fe10e')
-
-prepare() {
-  # Disable the check that adds -no-pie to LINKFLAGS, for gcc != 6
-  sed -i 's,0] >,0] =,g' $pkgname-$pkgver-stable/platform/x11/detect.py
-}
-
-build() {
-  # Not unbundled (yet):
-  #  bullet (FS#72924, https://github.com/godotengine/godot/issues/55599)
-  #  certs (FS#72762)
-  #  enet (contains no upstreamed IPv6 support)
-  #  libsquish, recast, xatlas
-  #  AUR: libwebm, squish
-  local to_unbundle="embree freetype libogg libpng libtheora libvorbis libvpx libwebp mbedtls miniupnpc opus pcre2 wslay zlib zstd"
-  local system_libs=""
-  for _lib in $to_unbundle; do
-    system_libs+="builtin_"$_lib"=no "
-    rm -rf thirdparty/$_lib
-  done
-
-  cd $pkgname-$pkgver-stable
-  export BUILD_NAME=arch_linux
-  scons -j16 \
-    bits=64 \
-    colored=yes \
-    platform=x11 \
-    pulseaudio=yes \
-    system_certs_path=/etc/ssl/certs/ca-certificates.crt \
-    target=release_debug \
-    tools=yes \
-    use_llvm=no \
-    CFLAGS="$CFLAGS -fPIC -Wl,-z,relro,-z,now" \
-    CXXFLAGS="$CXXFLAGS -fPIC -Wl,-z,relro,-z,now" \
-    LINKFLAGS="$LDFLAGS" \
-    $system_libs
-}
-
-package() {
-  cd $pkgname-$pkgver-stable
-  install -Dm644 misc/dist/linux/org.godotengine.Godot.desktop \
-    "$pkgdir/usr/share/applications/godot.desktop"
-  install -Dm644 icon.svg "$pkgdir/usr/share/pixmaps/godot.svg"
-  install -Dm755 bin/godot.x11.opt.tools.64 "$pkgdir/usr/bin/$pkgname"
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/godot/LICENSE"
-  install -Dm644 misc/dist/linux/godot.6 "$pkgdir/usr/share/man/man6/godot.6"
-  install -Dm644 misc/dist/linux/org.godotengine.Godot.xml \
-    "$pkgdir/usr/share/mime/packages/org.godotengine.Godot.xml"
-}

Copied: godot/repos/community-x86_64/PKGBUILD (from rev 1174690, godot/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2022-03-24 11:53:13 UTC (rev 1174691)
@@ -0,0 +1,67 @@
+# Maintainer: Alexander F. Rødseth <xyproto at archlinux.org>
+# Contributor: loqs
+# Contributor: Jorge Araya Navarro <jorgejavieran at yahoo.com.mx>
+# Contributor: Cristian Porras <porrascristian at gmail.com>
+# Contributor: Matthew Bentley <matthew at mtbentley.us>
+
+pkgname=godot
+pkgver=3.4.4
+pkgrel=1
+pkgdesc='Advanced cross-platform 2D and 3D game engine'
+url='https://godotengine.org'
+license=(MIT)
+arch=(x86_64)
+makedepends=(gcc scons yasm alsa-lib pulseaudio)
+depends=(embree freetype2 libglvnd libtheora libvorbis libvpx libwebp
+         libwslay libxcursor libxi libxinerama libxrandr mbedtls miniupnpc opusfile)
+optdepends=(pipewire-alsa pipewire-pulse)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/godotengine/godot/archive/$pkgver-stable.tar.gz")
+b2sums=('c1e93eaec776967ef6a2a4237776e022075497a36c39bf59ca7003de3311729c7a6465698d6beff652274675a0be73fe7e00a880c127bbb33888d360f47fe10e')
+
+prepare() {
+  # Disable the check that adds -no-pie to LINKFLAGS, for gcc != 6
+  sed -i 's,0] >,0] =,g' $pkgname-$pkgver-stable/platform/x11/detect.py
+}
+
+build() {
+  # Not unbundled (yet):
+  #  bullet (FS#72924, https://github.com/godotengine/godot/issues/55599)
+  #  certs (FS#72762)
+  #  enet (contains no upstreamed IPv6 support)
+  #  libsquish, recast, xatlas
+  #  AUR: libwebm, squish
+  local to_unbundle="embree freetype libogg libpng libtheora libvorbis libvpx libwebp mbedtls miniupnpc opus pcre2 wslay zlib zstd"
+  local system_libs=""
+  for _lib in $to_unbundle; do
+    system_libs+="builtin_"$_lib"=no "
+    rm -rf thirdparty/$_lib
+  done
+
+  cd $pkgname-$pkgver-stable
+  export BUILD_NAME=arch_linux
+  scons -j16 \
+    bits=64 \
+    colored=yes \
+    platform=x11 \
+    pulseaudio=yes \
+    system_certs_path=/etc/ssl/certs/ca-certificates.crt \
+    target=release_debug \
+    tools=yes \
+    use_llvm=no \
+    CFLAGS="$CFLAGS -fPIC -Wl,-z,relro,-z,now" \
+    CXXFLAGS="$CXXFLAGS -fPIC -Wl,-z,relro,-z,now" \
+    LINKFLAGS="$LDFLAGS" \
+    $system_libs
+}
+
+package() {
+  cd $pkgname-$pkgver-stable
+  install -Dm644 misc/dist/linux/org.godotengine.Godot.desktop \
+    "$pkgdir/usr/share/applications/godot.desktop"
+  install -Dm644 icon.svg "$pkgdir/usr/share/pixmaps/godot.svg"
+  install -Dm755 bin/godot.x11.opt.tools.64 "$pkgdir/usr/bin/$pkgname"
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/godot/LICENSE"
+  install -Dm644 misc/dist/linux/godot.6 "$pkgdir/usr/share/man/man6/godot.6"
+  install -Dm644 misc/dist/linux/org.godotengine.Godot.xml \
+    "$pkgdir/usr/share/mime/packages/org.godotengine.Godot.xml"
+}



More information about the arch-commits mailing list