Skip to content

Commit 5502d7d

Browse files
committed
Add psp-pacman step
1 parent 3077aeb commit 5502d7d

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

scripts/012-psp-pacman.sh

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#!/bin/bash
2+
# psp-pacman.sh by Wouter Wijsman (wwijsman@live.nl)
3+
4+
## clear CC and CXX
5+
unset CC
6+
unset CXX
7+
8+
## Exit on errors
9+
set -e
10+
11+
## Download the source code.
12+
clone_git_repo github.com sharkwouter psp-pacman
13+
14+
## Enter the source directory.
15+
cd psp-pacman
16+
17+
## Configure the build.
18+
autoreconf --install
19+
./configure
20+
make
21+
make install
File renamed without changes.

0 commit comments

Comments
 (0)