Anton Bolshakov 2022-07-02 15:47:31 +08:00
parent 539ee0dfc6
commit 904173ffc3
No known key found for this signature in database
GPG key ID: 32BDCED870788F04
2 changed files with 8 additions and 0 deletions

View file

@ -39,3 +39,7 @@ src_compile() {
src_install() { src_install() {
emake DESTDIR="${D}" install || die "emake install failed" emake DESTDIR="${D}" install || die "emake install failed"
} }
pkg_postinst() {
udev_reload
}

View file

@ -29,3 +29,7 @@ src_compile() {
src_install() { src_install() {
emake UDEV_RULE_DIR=/etc/udev/rules.d/ USE_OPENSSL=1 RUNTIME_PUBKEY_DIR=/usr/$(get_libdir)/crda/ DESTDIR="${D}" install || die "emake install failed" emake UDEV_RULE_DIR=/etc/udev/rules.d/ USE_OPENSSL=1 RUNTIME_PUBKEY_DIR=/usr/$(get_libdir)/crda/ DESTDIR="${D}" install || die "emake install failed"
} }
pkg_postinst() {
udev_reload
}