12345678910111213141516171819 |
- program_name="ksuperkey"
- program_slug="ksuperkey"
- program_description=""
- version=""
- build_depends="make gcc libx11-dev pkgconf"
- depends=""
- sources="https://github.com/hanschen/ksuperkey.git"
- tested_systems="freebsd"
- do_build() {
- cd ksuperkey
- ${gnumakebin} ${gnumakeparams}
- }
- do_install() {
- $subin ${gnumakebin} ${gnumakeparams} PREFIX="$usrdir" install
- [ "$?" -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."
- }
|