Update license path for attr package (#941)

This commit is contained in:
Marc 2025-10-23 13:32:43 +02:00 committed by GitHub
commit 72ca0cecd1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View File

@ -47,7 +47,7 @@
"provide-pre-built": true, "provide-pre-built": true,
"license": { "license": {
"type": "file", "type": "file",
"path": "doc/COPYING" "path": "doc/COPYING.LGPL"
} }
}, },
"brotli": { "brotli": {
@ -439,7 +439,7 @@
"provide-pre-built": true, "provide-pre-built": true,
"license": { "license": {
"type": "file", "type": "file",
"path": "doc/COPYING" "path": "doc/COPYING.LGPL"
} }
}, },
"libaom": { "libaom": {

View File

@ -17,7 +17,7 @@ trait attr
->exec('libtoolize --force --copy') ->exec('libtoolize --force --copy')
->exec('./autogen.sh || autoreconf -if') ->exec('./autogen.sh || autoreconf -if')
->configure('--disable-nls') ->configure('--disable-nls')
->make(); ->make('install-attributes_h install-data install-libattr_h install-libLTLIBRARIES install-pkgincludeHEADERS install-pkgconfDATA', with_install: false);
$this->patchPkgconfPrefix(['libattr.pc'], PKGCONF_PATCH_PREFIX); $this->patchPkgconfPrefix(['libattr.pc'], PKGCONF_PATCH_PREFIX);
} }
} }

View File

@ -26,7 +26,7 @@ trait libacl
->exec('libtoolize --force --copy') ->exec('libtoolize --force --copy')
->exec('./autogen.sh || autoreconf -if') ->exec('./autogen.sh || autoreconf -if')
->configure('--disable-nls', '--disable-tests') ->configure('--disable-nls', '--disable-tests')
->make(); ->make('install-acl_h install-libacl_h install-data install-libLTLIBRARIES install-pkgincludeHEADERS install-sysincludeHEADERS install-pkgconfDATA', with_install: false);
$this->patchPkgconfPrefix(['libacl.pc'], PKGCONF_PATCH_PREFIX); $this->patchPkgconfPrefix(['libacl.pc'], PKGCONF_PATCH_PREFIX);
} }
} }