Skip to content

Commit

Permalink
Add script for building and installing ebootsigner
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Hegarty committed Apr 11, 2011
1 parent 701ad88 commit 9132736
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions scripts/010-ebootsigner.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/bin/sh
# ebootsigner.sh by Sam Hegarty (samr.hegarty@gmail.com)
# Modification of script by Dan Peori (danpeori@oopo.net)

## Exit on errors
set -e

## Download the source code.
wget --continue --no-check-certificate https://github.com/int-0/ebootsigner/tarball/master -O ebootsigner.tar.gz

## Unpack the source code.
rm -Rf ebootsigner && mkdir ebootsigner && tar --strip-components=1 --directory=ebootsigner -xvzf ebootsigner.tar.gz

## Enter the source directory.
cd ebootsigner

## Build and install
make && make install

0 comments on commit 9132736

Please sign in to comment.