Was supposed to be a linux distribution, now just a collection of build scripts for packages on top of (ideally) any distribution.
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.
|
|
|
import 'vcs/git'
|
|
|
|
import 'compile/cmake'
|
|
|
|
|
|
|
|
name=jstest-gtk
|
|
|
|
|
|
|
|
vcs_git "https://github.com/Grumbel/$name/"
|
|
|
|
extrafile "$name.desktop"
|
|
|
|
header_end
|
|
|
|
|
|
|
|
cd "$name"
|
|
|
|
|
|
|
|
# Fix paths
|
|
|
|
sed -i -e "s/Main::current()->get_data_directory()/\"$(safe_sed "$dir_sysroot/$dir_prefix/$dir_datadir/$name/")\"/" src/joystick_list_widget.cpp
|
|
|
|
|
|
|
|
compile_cmake -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/applications" "../$name.desktop"
|
|
|
|
install -Dm644 data/generic.png "$dir_install/$dir_prefix/$dir_datadir/pixmaps/$name.png"
|
|
|
|
mkdir -p "$dir_install/$dir_prefix/$dir_datadir/$name"
|
|
|
|
cp data/*.png "$dir_install/$dir_prefix/$dir_datadir/$name"
|
|
|
|
|
|
|
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab:
|