mirror of
https://github.com/Maschell/libntfs-wiiu.git
synced 2024-11-05 20:55:09 +01:00
Add Dockerfile and readme
This commit is contained in:
parent
5b75ab1515
commit
6c147b1ca8
14
Dockerfile
Normal file
14
Dockerfile
Normal file
@ -0,0 +1,14 @@
|
||||
FROM wiiulegacy/core:0.1
|
||||
|
||||
COPY --from=wiiulegacy/libiosuhax:0.3 /artifacts $DEVKITPRO/portlibs
|
||||
|
||||
RUN git clone https://github.com/Maschell/libntfs-wiiu && cd libntfs-wiiu && git checkout v2013.1.13
|
||||
WORKDIR libntfs-wiiu
|
||||
|
||||
RUN make wiiu-release && \
|
||||
find $DEVKITPRO/portlibs -maxdepth 3 -type f -delete && \
|
||||
make -C source wiiu-install PLATFORM=wiiu && \
|
||||
cp -r ${DEVKITPRO}/portlibs /artifacts
|
||||
|
||||
WORKDIR /artifacts
|
||||
RUN find .
|
@ -10,3 +10,11 @@ Link the application with:
|
||||
To be able to use libntfs for the Wii u, you need to install the following dependencies:
|
||||
|
||||
- [libiosuhax](https://github.com/dimok789/libiosuhax)
|
||||
|
||||
# Use the prebuilt files from a Docker image.
|
||||
The image `wiiulegacy/libntfs` on [Docker Hub](https://hub.docker.com/r/wiiulegacy/libntfs/) provides a prebuilt library in the `/artifacts` directory. Copy it into your DevkitPPC portlibs folder.
|
||||
|
||||
Example:
|
||||
```
|
||||
COPY --from=wiiulegacy/libntfs:2013.1.13 /artifacts $DEVKITPRO/portlibs
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user