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.
21 lines
562 B
21 lines
562 B
8 years ago
|
import 'vcs/git'
|
||
|
import 'compile/cmake'
|
||
|
|
||
|
name=jstest-gtk
|
||
|
|
||
|
vcs_git "https://github.com/Grumbel/$name/"
|
||
|
header_end
|
||
|
|
||
|
cd "$name"
|
||
|
|
||
|
# Fix paths
|
||
|
sed -i -e "/^std::string find_datadir/!b;n;a\return \"$(safe_sed "/$dir_prefix/$dir_datadir/$name/")\";" src/main.cpp
|
||
|
|
||
|
compile_cmake -b build -I
|
||
|
|
||
|
install -Dm755 -t "$dir_install/$dir_prefix/$dir_bindir" "build/$name"
|
||
|
install -Dm644 -t "$dir_install/$dir_prefix/$dir_mandir/man1" "data/$name.1"
|
||
|
install -Dm644 -t "$dir_install/$dir_prefix/$dir_datadir/$name" data/*.png
|
||
|
|
||
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab:
|