master hovercats/oakiss / pkg / hotplugd / gen.lua
 1cflags{
 2	'-std=c11', '-Wall', '-Wextra', '-Wpedantic',
 3	([[-D 'PREFIX="%s"']]):format(config.prefix),
 4	'-isystem $builddir/pkg/linux-headers/include',
 5}
 6
 7pkg.deps = {'pkg/linux-headers/headers'}
 8
 9file('bin/hotplugd',             '755', exe('hotplugd', {'hotplugd.c'}))
10file('libexec/hotplugd/ata_id',  '755', exe('ata_id',   {'ata_id.c'}))
11file('libexec/hotplugd/trigger', '755', exe('trigger',  {'trigger.c'}))
12
13fetch 'git'