AUR AI Reviewer

Review Results

Version #2268 of lib32-mpg123 · commit f3ad33924d7c · status Reviewed

Risk 0/5 · Safe PKGBUILD
Result #2676

Comment

The change is limited to formatting/quoting/indentation and a maintainer line update in PKGBUILD. Source URLs remain HTTPS and pinned to a released tarball with a signature, no new build-time network access or suspicious commands were introduced, and the build/package logic is unchanged. The only functional edit is switching the sed replacement quotes from single to double quotes while preserving the same literal pattern and replacement; this does not add command expansion because the string contains no shell variables or backticks. No integrity or persistence red flags are present in this diff.

@@ -1,50 +1,51 @@
-# Maintainer: Sven-Hendrik Haase <svenstaro@archlinux.org>
+# Maintainer: Groctel <git@taxorubio.com>
 # Contributor: Hugo Doria <hugo@archlinux.org>
 # Contributor: Giovanni Scafora <giovanni@archlinux.org>
 
 pkgname=lib32-mpg123
 pkgver=1.33.7
 pkgrel=1
-pkgdesc='Console based real time MPEG Audio Player for Layer 1, 2 and 3 (32-bit)'
-url='https://mpg123.de/'
-arch=('x86_64')
-license=('LGPL-2.1-only')
-depends=('lib32-alsa-lib' 'mpg123')
-makedepends=('lib32-sdl2' 'lib32-jack2' 'lib32-libpulse')
+pkgdesc="Console based real time MPEG Audio Player for Layer 1, 2 and 3 (32-bit)"
+url="https://mpg123.de/"
+arch=(x86_64)
+license=(LGPL-2.1-only)
+depends=("lib32-alsa-lib" "mpg123")
+makedepends=("lib32-sdl2" "lib32-jack2" "lib32-libpulse")
 optdepends=(
-  'lib32-sdl2: for sdl audio support'
-  'lib32-jack: for jack audio support'
-  'lib32-libpulse: for pulse audio support'
+    "lib32-sdl2: for sdl audio support"
+    "lib32-jack: for jack audio support"
+    "lib32-libpulse: for pulse audio support"
 )
 provides=(lib{mpg,out,syn}123.so)
 source=(https://downloads.sourceforge.net/sourceforge/mpg123/mpg123-${pkgver}.tar.bz2{,.sig})
 sha512sums=('694743802bb7be0f4a39bf62e681ae0bfed769cb87dc6c5b6fb5f9245966631efb5c5b9bd58588f7af55ced5d020f97c8a54993e71b5295bc45ebd152473f40e'
             'SKIP')
-validpgpkeys=('D021FF8ECF4BE09719D61A27231C4CBC60D5CAFE')
+validpgpkeys=("D021FF8ECF4BE09719D61A27231C4CBC60D5CAFE")
 
 build() {
-  cd mpg123-${pkgver}
+    cd mpg123-${pkgver}
 
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG="i686-pc-linux-gnu-pkg-config"
+    export CC="gcc -m32"
+    export CXX="g++ -m32"
+    export PKG_CONFIG="i686-pc-linux-gnu-pkg-config"
 
-  ./configure \
-    --build="$CHOST" \
-    --host=i686-pc-linux-gnu \
-    --prefix=/usr \
-    --libdir=/usr/lib32 \
-    --enable-int-quality \
-    --with-audio="alsa oss sdl jack pulse"
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
+    ./configure \
+        --build="$CHOST" \
+        --host=i686-pc-linux-gnu \
+        --prefix=/usr \
+        --libdir=/usr/lib32 \
+        --enable-int-quality \
+        --with-audio="alsa oss sdl jack pulse"
+
+    # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+    sed -i -e "s/ -shared / -Wl,-O1,--as-needed\0/g" libtool
+    make
 }
 
 package() {
-  cd mpg123-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  rm -r "${pkgdir}"/usr/{include,share,bin}
+    cd mpg123-${pkgver}
+    make DESTDIR="${pkgdir}" install
+    rm -r "${pkgdir}"/usr/{include,share,bin}
 }
 
 # vim:set sw=2 sts=-1 et: