1
0
Fork 0
mirror of https://github.com/Phantop/solus-stuff synced 2025-03-25 03:19:30 +00:00

Add interception-tools and skr

This commit is contained in:
Jonathan Hakimi 2020-06-25 16:53:14 -04:00
parent 2303650ef0
commit d2429672a6
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,19 @@
name : interception-tools
version : 1
release : 1
source :
- git|https://gitlab.com/interception/linux/tools.git : master
license : GPL-2.0-or-later
summary : Insert summary here
description: |
Insert description here
builddeps :
- pkgconfig(libevdev)
- pkgconfig(libudev)
- pkgconfig(yaml-cpp)
setup : |
%cmake
build : |
%make
install : |
%make_install

21
skr/package.yml Normal file
View file

@ -0,0 +1,21 @@
name : skr
version : 1
release : 1
source :
- git|https://github.com/DavRack/skr.git : master
license : GPL-2.0-or-later
summary : Insert summary here
description: |
Insert description here
rundeps :
- interception-tools
build : |
gcc src/core/main.c -o skr
gcc src/kid/skrkid.c -o skrkid
install : |
install -D -d -m 0755 $installdir/usr/share/skr
cp -r src/parser $installdir/usr/share/skr/parser
install -D -m 00755 skrkid $installdir/usr/share/skr/skrkid
install -D -d -m 0755 $installdir/usr/bin
install -D -m 00755 skr $installdir/usr/bin/skr