mid-kid
8 years ago
2 changed files with 40 additions and 0 deletions
@ -0,0 +1,15 @@ |
|||
name=general-tools |
|||
version=1.0.0 |
|||
update_url='https://sourceforge.net/projects/devkitpro/files/sources/tools/' |
|||
|
|||
dlextract "https://sourceforge.net/projects/devkitpro/files/sources/tools/$name-$version.tar.bz2" \ |
|||
'ad13e4e3521e49156340c57ecb3c1b76' |
|||
header_end |
|||
|
|||
cd "$name-$version" |
|||
|
|||
./configure --prefix="/$dir_prefix/$dir_libdir/devkitPRO/devkitARM" |
|||
make |
|||
make DESTDIR="$dir_install" install |
|||
|
|||
# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab: |
@ -0,0 +1,25 @@ |
|||
name=libctru |
|||
version=1.2.1 |
|||
update_url="https://github.com/smealum/ctrulib/releases" |
|||
|
|||
dlextract "https://github.com/smealum/ctrulib/releases/download/v$version/$name-src-$version.tar.bz2" \ |
|||
'd4bdcb71d74b0e7b62003dbb191e4803' |
|||
header_end |
|||
|
|||
# The makefile doesn't like it when this directory is named build |
|||
builddir=build |
|||
if [ "$(basename "$PWD")" = 'build' ]; then |
|||
builddir=totallynotbuild |
|||
fi |
|||
|
|||
make \ |
|||
DEVKITPRO="/$dir_prefix/$dir_libdir/devkitPRO" \ |
|||
DEVKITARM="/$dir_prefix/$dir_libdir/devkitPRO/devkitARM" \ |
|||
BUILD="$builddir" |
|||
|
|||
make install \ |
|||
DEVKITPRO="$dir_install/$dir_prefix/$dir_libdir/devkitPRO" \ |
|||
DEVKITARM="/$dir_prefix/$dir_libdir/devkitPRO/devkitARM" \ |
|||
BUILD="$builddir" |
|||
|
|||
# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab: |
Loading…
Reference in new issue