ksuperkey.xb 573 B

12345678910111213141516171819
  1. program_name="ksuperkey"
  2. program_slug="ksuperkey"
  3. program_description=""
  4. version=""
  5. build_depends="make gcc libx11-dev pkgconf"
  6. depends=""
  7. sources="https://github.com/hanschen/ksuperkey.git"
  8. tested_systems="freebsd"
  9. do_build() {
  10. cd ksuperkey
  11. ${gnumakebin} ${gnumakeparams}
  12. }
  13. do_install() {
  14. $subin ${gnumakebin} ${gnumakeparams} PREFIX="$usrdir" install
  15. [ "$?" -eq "0" ] && echo "$program_name has been installed successfully!" || echo "$program_name has had some issues while installing. Please check for error messages on previous output to find out the problem."
  16. }