mid-kid
9 years ago
7 changed files with 37 additions and 9 deletions
@ -1,6 +1,5 @@ |
|||||
compile_configure() { |
compile_configure() { |
||||
./configure --prefix="$dir_prefix" --sysconfdir=/etc $@ |
./configure --prefix="$dir_prefix" --sysconfdir=/etc $@ |
||||
make |
make |
||||
option !no_check make check |
|
||||
make DESTDIR="$dir_install/" install |
make DESTDIR="$dir_install/" install |
||||
} |
} |
||||
|
@ -0,0 +1,15 @@ |
|||||
|
# Using radare's own version of capstone-next, because they patch it and such. |
||||
|
|
||||
|
import "vcs/git" |
||||
|
import "compile/configure" |
||||
|
|
||||
|
name=radare2 |
||||
|
|
||||
|
vcs_git "https://github.com/radare/$name" |
||||
|
header_end |
||||
|
|
||||
|
cd "$name" |
||||
|
|
||||
|
compile_configure --with-syszip --with-sysmagic |
||||
|
|
||||
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh et: |
@ -0,0 +1,14 @@ |
|||||
|
import "vcs/git" |
||||
|
|
||||
|
name=spasm-ng |
||||
|
|
||||
|
vcs_git "https://github.com/alberthdev/$name" |
||||
|
header_end |
||||
|
|
||||
|
cd "$name" |
||||
|
|
||||
|
make |
||||
|
mkdir -p "$dir_install/$dir_prefix/bin" |
||||
|
make DESTDIR="$dir_install/$dir_prefix" install |
||||
|
|
||||
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh et: |
Loading…
Reference in new issue