Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Vitadev Package Manager Vita: Difference between revisions

From GameBrew
No edit summary
No edit summary
Line 1: Line 1:
{{cleanup|article|Needs cleanup}}
{{#seo:
{{#seo:
|title=Vita Homebrew PC Tools (Developments) - GameBrew!
|title=Vita Homebrew PC Tools (Developments) - GameBrew!
Line 7: Line 6:
}}
}}
{{Infobox Vita Homebrews
{{Infobox Vita Homebrews
|title=Vitadev Package manager
|title=Vitadev Package Manager
|image=vitadevpackagemanagervita.jpg
|image=vitadevpackagemanagervita.jpg
|description=SDK installer and package "manager" for $VITASDK
|description=SDK installer and package "manager" for $VITASDK
|author=vitasdk
|author=vitasdk
|lastupdated=2021/07/12
|lastupdated=2022/11/17
|type=Developments
|type=Developments
|version=2021
|version=2022
|license=LGPL-2.1
|license=LGPL-2.1
|download=https://dlhb.gamebrew.org/vitahomebrews/vitadevpackagemanagervita.7z
|download=[https://dlhb.gamebrew.org/vitahomebrews/vitadevpackagemanagervita.7z Source only]
|website=
|website=
|source=https://github.com/vitasdk/vdpm
|source=https://github.com/vitasdk/vdpm
}}
}}
SDK installer and package "manager" for $VITASDK
'''Vitadev Package Manager''' is a SDK installer and package "manager" for $VITASDK.


==Media==
== What is Vitadev Package Manager ==
<youtube>RIaJHh60hQY</youtube>
Vitadev Package Manager or VDPM is a project which aims on getting common libraries building for the PS Vita using the [https://github.com/vitasdk vitasdk toolchain]. It was based off the original idea of xerpi's vita_portlibs.


== Usage ==
=== Getting started ===
'''You should make sure you have the <code>patch</code> command installed.'''


==Screenshots==
==== Mac &amp; Linux ====
https://dlhb.gamebrew.org/vitahomebrews/vitadevpackagemanagervita-01.jpg
First install cmake, you can get this from [http://brew.sh Homebrew] on Mac (<code>brew install cmake</code>), and from your distro's package manager on Linux (on ubuntu: <code>sudo apt-get install cmake</code>).
https://dlhb.gamebrew.org/vitahomebrews/vitadevpackagemanagervita-02.jpg
https://dlhb.gamebrew.org/vitahomebrews/vitadevpackagemanagervita-03.jpg
https://dlhb.gamebrew.org/vitahomebrews/vitadevpackagemanagervita-04.jpg
https://dlhb.gamebrew.org/vitahomebrews/vitadevpackagemanagervita-05.jpg
https://dlhb.gamebrew.org/vitahomebrews/vitadevpackagemanagervita-06.jpg
https://dlhb.gamebrew.org/vitahomebrews/vitadevpackagemanagervita-07.jpg
https://dlhb.gamebrew.org/vitahomebrews/vitadevpackagemanagervita-08.jpg


==Changelogs==
<pre>git clone https://github.com/vitasdk/vdpm
'''(v.1.0)'''
cd vdpm
* First Release.
./bootstrap-vitasdk.sh
export VITASDK=/usr/local/vitasdk # define $VITASDK if you haven't already
export PATH=$VITASDK/bin:$PATH # add vitasdk tool to $PATH if you haven't already
./install-all.sh</pre>
 
==== Windows (Bash on Ubuntu on Windows) ====
Just follow the steps for Linux above. This is the recommended way to set up vdpm on Windows, however, it only works for Windows 10.
 
Read here for information on how to install Bash on Ubuntu on Windows: https://msdn.microsoft.com/en-us/commandline/wsl/install_guide
 
==== Windows (msys2) ====
For older versions of Windows, you should use msys2. Get it from here: https://msys2.github.io/. Only 64-bit version is supported.
 
<pre># Read through https://msys2.github.io/ and make sure your msys2 is up-to-date first
pacman -S make git wget p7zip tar cmake
git clone https://github.com/vitasdk/vdpm
cd vdpm
./bootstrap-vitasdk.sh
export VITASDK=/usr/local/vitasdk # define $VITASDK if you haven't already
export PATH=$VITASDK/bin:$PATH # add vitasdk tool to $PATH if you haven't already
./install-all.sh</pre>
 
=== Update/reinstall ===
Run <code>./vitasdk-update</code> which will replace files in <code>$VITASDK</code> with the latest nightly and libraries.
 
== Known Issues ==
* The scripts that are used to install the required packages make use of [https://en.wikipedia.org/wiki/Wget Wget] to download the required files. Some of the required files are downloaded from [https://sourceforge.net/ SourceForge] which redirects you to one of their mirror sites automatically. Wget handles this by default, however, if you (or your System Administrator) have a [https://www.gnu.org/software/wget/manual/html_node/Startup-File.html Wget Startup File] in use it's possible to have settings in that file which will cause the downloads to fail, especially when using redirection from hosts such as SourceForge. If the installation isn't working for you and you notice that it's giving your errors about missing files try temporarily removing/renaming the Wget Startup File to see if that fixes the issue.
 
== Contributing ==
Contributions are welcome to both the package repo, documentation or the package manager itself.


== External links ==
== External links ==
* Official Website -
* Github - https://github.com/vitasdk/vdpm
* Github - https://github.com/vitasdk/vdpm
* VitaDB -
* Gbatemp -
* Google Source -
* Reddit -
* Gitlab -

Revision as of 00:09, 22 November 2022

Vitadev Package Manager
File:Vitadevpackagemanagervita.jpg
General
Authorvitasdk
TypeDevelopments
Version2022
LicenseLGPL-2.1
Last Updated2022/11/17
Links
[Source only Download]
Source

Vitadev Package Manager is a SDK installer and package "manager" for $VITASDK.

What is Vitadev Package Manager

Vitadev Package Manager or VDPM is a project which aims on getting common libraries building for the PS Vita using the vitasdk toolchain. It was based off the original idea of xerpi's vita_portlibs.

Usage

Getting started

You should make sure you have the patch command installed.

Mac & Linux

First install cmake, you can get this from Homebrew on Mac (brew install cmake), and from your distro's package manager on Linux (on ubuntu: sudo apt-get install cmake).

git clone https://github.com/vitasdk/vdpm
cd vdpm
./bootstrap-vitasdk.sh
export VITASDK=/usr/local/vitasdk # define $VITASDK if you haven't already
export PATH=$VITASDK/bin:$PATH # add vitasdk tool to $PATH if you haven't already
./install-all.sh

Windows (Bash on Ubuntu on Windows)

Just follow the steps for Linux above. This is the recommended way to set up vdpm on Windows, however, it only works for Windows 10.

Read here for information on how to install Bash on Ubuntu on Windows: https://msdn.microsoft.com/en-us/commandline/wsl/install_guide

Windows (msys2)

For older versions of Windows, you should use msys2. Get it from here: https://msys2.github.io/. Only 64-bit version is supported.

# Read through https://msys2.github.io/ and make sure your msys2 is up-to-date first
pacman -S make git wget p7zip tar cmake
git clone https://github.com/vitasdk/vdpm
cd vdpm
./bootstrap-vitasdk.sh
export VITASDK=/usr/local/vitasdk # define $VITASDK if you haven't already
export PATH=$VITASDK/bin:$PATH # add vitasdk tool to $PATH if you haven't already
./install-all.sh

Update/reinstall

Run ./vitasdk-update which will replace files in $VITASDK with the latest nightly and libraries.

Known Issues

  • The scripts that are used to install the required packages make use of Wget to download the required files. Some of the required files are downloaded from SourceForge which redirects you to one of their mirror sites automatically. Wget handles this by default, however, if you (or your System Administrator) have a Wget Startup File in use it's possible to have settings in that file which will cause the downloads to fail, especially when using redirection from hosts such as SourceForge. If the installation isn't working for you and you notice that it's giving your errors about missing files try temporarily removing/renaming the Wget Startup File to see if that fixes the issue.

Contributing

Contributions are welcome to both the package repo, documentation or the package manager itself.

External links

Advertising: