Package Details: uad-ng-bin 1.0.3-3

Git Clone URL: https://aur.archlinux.org/uad-ng-bin.git (read-only, click to copy)
Package Base: uad-ng-bin
Description: Cross-platform GUI written in Rust using ADB to debloat non-rooted Android devices (next generation)
Upstream URL: https://github.com/Universal-Debloater-Alliance/universal-android-debloater-next-generation
Keywords: universal-android-debloater universal-android-debloater-next-generation
Licenses: GPL3
Provides: universal-android-debloater
Submitter: AlphaJack
Maintainer: AlphaJack
Last Packager: AlphaJack
Votes: 1
Popularity: 0.54
First Submitted: 2024-03-17 12:59 (UTC)
Last Updated: 2024-04-05 17:06 (UTC)

Latest Comments

AlphaJack commented on 2024-04-08 11:29 (UTC)

Thank you for reporting!

thor2002ro commented on 2024-04-06 06:28 (UTC)

works now...GJ

thor2002ro commented on 2024-04-05 16:19 (UTC)

still broken :)

should be


package(){
 bsdtar --extract --file "$pkgname-$pkgver.zip"
 install -D -m 755 "uad-ng-noselfupdate-linux" "$pkgdir/usr/bin/uad-ng"
 install -D -m 644 "uad-ng.desktop" -t "$pkgdir/usr/share/applications"
 install -D -m 644 "uad-ng.png"     -t "$pkgdir/usr/share/pixmaps"
}

thor2002ro commented on 2024-04-02 19:32 (UTC) (edited on 2024-04-02 19:34 (UTC) by thor2002ro)

broken .....

fix


# Maintainer: AlphaJack <alphajack at tuta dot io>
# Contributor: w1nst0n <w1nst0n at keemail dot me>

pkgname="uad-ng-bin"
pkgver=1.0.3
pkgrel=1
pkgdesc="Cross-platform GUI written in Rust using ADB to debloat non-rooted Android devices (next generation)"
arch=('x86_64')
url="https://github.com/Universal-Debloater-Alliance/universal-android-debloater-next-generation"
license=('GPL3')
depends=('android-tools' 'fontconfig' 'vulkan-icd-loader')
provides=('universal-android-debloater')
source=("$pkgname-$pkgver::$url/releases/download/v$pkgver/uad-ng-noselfupdate-linux.zip"
        "uad-ng.png::$url/blob/main/resources/assets/logo-dark.png?raw=true"
        "uad-ng.desktop")
b2sums=('SKIP'
        'SKIP'
        '4c9b2992778ba84b7085b1c26dd8d27b6238f482521c1b3f18c2b2cd0f77d5094c15a6d84a916ba00b51cd2fb102c25de2bb5f803ef092a2b600ef40a43d9a2e')

package() {
    # Extract the contents of the zip file
    mkdir -p "$pkgdir/usr/bin/"
    unzip -q "$srcdir/$pkgname-$pkgver" -d "$pkgdir/usr/bin/"

    # Rename the executable
    mv "$pkgdir/usr/bin/uad-ng-noselfupdate-linux" "$pkgdir/usr/bin/uad-ng"

    # Install desktop file
    install -Dm 644 "$srcdir/uad-ng.desktop" -t "$pkgdir/usr/share/applications"

    # Install icon
    install -Dm 644 "$srcdir/uad-ng.png" -t "$pkgdir/usr/share/pixmaps"
}