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.
20 lines
590 B
20 lines
590 B
8 years ago
|
# NOTE: This program includes lua 5.1 in it's source code. Due to how it's built, it's hard to link it against the system libs instead.
|
||
|
|
||
|
name=bam
|
||
|
version=0.4.0
|
||
|
update_url="https://matricks.github.io/$name/"
|
||
|
|
||
|
dlextract "http://github.com/downloads/matricks/$name/$name-$version.tar.bz2" \
|
||
|
'f8b62ad553c3615a725a034df4fb4257'
|
||
|
header_end
|
||
|
|
||
|
cd "$name-$version"
|
||
|
|
||
|
# Allow for custom cflags
|
||
|
sed -i -e "s/-rdynamic/& $(safe_sed "$CFLAGS")/" make_unix.sh
|
||
|
|
||
|
./make_unix.sh
|
||
|
install -Dm755 "$name" "$dir_install/$dir_prefix/$dir_bindir/$name-0.4"
|
||
|
|
||
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh et:
|