mid-kid
8 years ago
2 changed files with 32 additions and 0 deletions
@ -0,0 +1,8 @@ |
|||
[Desktop Entry] |
|||
Type=Application |
|||
Name=Jstest |
|||
Comment=Joystick Configuration |
|||
Exec=jstest-gtk |
|||
Icon=jstest-gtk |
|||
Terminal=false |
|||
Categories=GTK;System; |
@ -0,0 +1,24 @@ |
|||
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 et: |
Loading…
Reference in new issue