-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/aeen123/roblox-assets-extra…
- Loading branch information
Showing
15 changed files
with
192 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
pkgname=Roblox-assets-extractor | ||
pkgdesc='A safe way to extract assets from your Roblox installation.' | ||
pkgver=0.1.3 | ||
pkgrel=1 | ||
makedepends=('rust' 'cargo') | ||
arch=('x86_64') | ||
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/AeEn123/Roblox-assets-extractor/archive/refs/tags/v0.1.3.tar.gz") | ||
sha256sums=('1f8fbbf06c71266b81beb863e85de9feff2bdda0f3067397932f3c2c6f4d738f') | ||
license=('MIT') | ||
|
||
# Generated in accordance to https://wiki.archlinux.org/title/Rust_package_guidelines. | ||
# Might require further modification depending on the package involved. | ||
prepare() { | ||
mv ${srcdir}/${pkgname}-${pkgver}/* ${srcdir}/ | ||
rm -rf ${srcdir}/${pkgname}-${pkgver} | ||
cargo fetch --locked --target "$CARCH-unknown-linux-gnu" | ||
} | ||
|
||
build() { | ||
export RUSTUP_TOOLCHAIN=stable | ||
export CARGO_TARGET_DIR=target | ||
cargo build --frozen --release --all-features | ||
} | ||
|
||
package() { | ||
install -Dm0755 -t "$pkgdir/usr/bin/" "target/release/$pkgname" | ||
install -Dm644 "assets/icon.svg" "${pkgdir}/usr/share/icons/hicolor/symbolic/apps/$pkgname.svg" | ||
install -Dm644 "packages/arch/$pkgname.desktop" "${pkgdir}/usr/share/applications/$pkgname.desktop" | ||
install -Dm644 "packages/arch/$pkgname-system.json" "${pkgdir}/usr/bin/$pkgname-system.json" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"config-path": "~/.config/Roblox-assets-extractor-config.json", | ||
"allow-updates": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[Desktop Entry] | ||
Type=Application | ||
Name=Roblox Assets Extractor | ||
Comment=A safe way to extract assets from your Roblox installation. | ||
Categories=Utility | ||
Exec=Roblox-assets-extractor | ||
Icon=Roblox-assets-extractor | ||
Terminal=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"config-path": "%localappdata%\\Roblox-assets-extractor-config.json", | ||
"prefer-installers": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.