Was supposed to be a linux distribution, now just a collection of build scripts for packages on top of (ideally) any distribution.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

25 lines
770 B

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: