diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-01-11 01:54:54 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-01-11 01:54:54 +0000 |
commit | 21c4b84eb30afc752dd0ba5965c61dfc3bebac3d (patch) | |
tree | 1ca6f553222cbe4809067ffa24d6efafdae7b8df /user/pm-quirks/APKBUILD | |
parent | 5efd7da9a9a79f82b4621cfd34fb8200c51f485a (diff) | |
download | packages-21c4b84eb30afc752dd0ba5965c61dfc3bebac3d.tar.gz packages-21c4b84eb30afc752dd0ba5965c61dfc3bebac3d.tar.bz2 packages-21c4b84eb30afc752dd0ba5965c61dfc3bebac3d.tar.xz packages-21c4b84eb30afc752dd0ba5965c61dfc3bebac3d.zip |
user/*: Modernise / fix syntax / metadata / deps
Diffstat (limited to 'user/pm-quirks/APKBUILD')
-rw-r--r-- | user/pm-quirks/APKBUILD | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/user/pm-quirks/APKBUILD b/user/pm-quirks/APKBUILD index 9b90ead00..c74eb36fd 100644 --- a/user/pm-quirks/APKBUILD +++ b/user/pm-quirks/APKBUILD @@ -6,16 +6,15 @@ pkgrel=0 pkgdesc="Quirks data for pm-utils" url="https://pm-utils.freedesktop.org/wiki/" arch="noarch" -options="!check" # this is a bunch of data files for pm-utils, nothing to check -license="GPL-2.0-only" # same as pm-utils, hopefully +options="!check" # This is a bunch of data files for pm-utils, nothing to check +license="GPL-2.0-only" # same as pm-utils, hopefully depends="pm-utils" makedepends="" source="https://pm-utils.freedesktop.org/releases/$pkgname-$pkgver.tar.gz" package() { - cd "$srcdir" install -m755 -d ${pkgdir}/usr/lib/pm-utils/video-quirks - install -m644 video-quirks/*.quirkdb ${pkgdir}/usr/lib/pm-utils/video-quirks/ + install -m644 "$srcdir"/video-quirks/*.quirkdb ${pkgdir}/usr/lib/pm-utils/video-quirks/ } sha512sums="e20244fb72475945e08010d7ec19db2c017c1a04fa01d3d08c03d704d7f07f9c087bac6a5a44242cc8ed6cec5db47bc06a8862dd0f74088a565d37b6d7b95afc pm-quirks-20100619.tar.gz" |