-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
systemd-boot-manager: Update package
Signed-off-by: Vasiliy Stelmachenok <[email protected]>
- Loading branch information
Showing
2 changed files
with
29 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,38 @@ | ||
pkgname=systemd-boot-manager | ||
pkgver=12 | ||
pkgrel=2 | ||
pkgver=13 | ||
pkgrel=1 | ||
pkgdesc='A simple tool to maintain systemd-boot & systemd-boot entries for CachyOS' | ||
arch=(any) | ||
url="https://github.com/CachyOS/CachyOS-PKGBUILDS/tree/master/$pkgname" | ||
license=(GPL-2.0-or-later) | ||
backup=('etc/sdboot-manage.conf') | ||
depends=(systemd | ||
depends=( | ||
systemd | ||
findutils | ||
grep | ||
gawk) | ||
gawk | ||
) | ||
|
||
source=( | ||
$url/sdboot-manage | ||
$url/sdboot-manage.conf | ||
$url/sdboot-kernel-update.hook | ||
$url/sdboot-kernel-remove.hook | ||
$url/sdboot-systemd-update.hook | ||
sdboot-manage | ||
sdboot-manage.conf | ||
sdboot-kernel-update.hook | ||
sdboot-kernel-remove.hook | ||
sdboot-systemd-update.hook | ||
) | ||
|
||
sha512sums=('d1cfa4432307aabdc24d36bf2bef46a1eaa3f0bafaab73c9ca8c151375827132848c43d3efa91c64126780c1b4017635ec4a70b4be06b0820d6280aeb685016f' | ||
'63439b2a71571d22b0bf231732c9d4e56cb945203737d1cdc9d97f7d9f1bd6d2ef9b49fc46ab5da98f29d05e4c2fbc36183a430062d43b715602bc3e109826b8' | ||
sha512sums=('65850880665b5dfb65fa12cf09d6050ed858df8195144a4a3c7561c233da79ea12a8092207146f1d1368125076e2a8979899d54f494f6744e6f2bd8198befe2e' | ||
'c9570e9f4628a07a08f4e89af061c3da45aa69c5f293464ad9765f26db277204a5d3f9c934ca95e755806ada9f29e74165576a224755209071e3e7c9fb79d0a2' | ||
'047da99a32b3cf1d9ff52ff347a0a8119f7c02a947d45c913c62d4c960d69aebcc240c1a466780bbcea08903361d8f33096d679e8aaac81d8a1f0c9fdf48f442' | ||
'a7a6adc9fea62a8884b3bcf78cb9958af361dd5ae21ebef71a095ad96713356cbbf53d141aaccadcb0775c83f3fc8bf7f3a1f48031cf603c2e69f3b38990df30' | ||
'ebd0c79def6f2d77b9eac63ca41460db5670220dd9ba033bd0c24017abc7f71da2250907f76cac0cc9cf10e219ef518b916aa547fafbba4715be4985cc278c50') | ||
|
||
package() { | ||
install -D -m755 "sdboot-manage" "${pkgdir}/usr/bin/sdboot-manage" | ||
install -D -m644 "sdboot-manage.conf" "${pkgdir}/etc/sdboot-manage.conf" | ||
install -D -m644 "sdboot-kernel-update.hook" "${pkgdir}/usr/share/libalpm/hooks/sdboot-kernel-update.hook" | ||
install -D -m644 "sdboot-kernel-remove.hook" "${pkgdir}/usr/share/libalpm/hooks/sdboot-kernel-remove.hook" | ||
install -D -m644 "sdboot-systemd-update.hook" "${pkgdir}/usr/share/libalpm/hooks/sdboot-systemd-update.hook" | ||
mkdir -p -m 755 "${pkgdir}/etc/sdboot-manage.conf.d/" | ||
mkdir -p -m 755 "${pkgdir}/usr/lib/sdboot-manage.conf.d/" | ||
install -D -m755 sdboot-manage "${pkgdir}/usr/bin/sdboot-manage" | ||
install -D -m644 sdboot-manage.conf "${pkgdir}/etc/sdboot-manage.conf" | ||
install -D -m644 sdboot-kernel-update.hook "${pkgdir}/usr/share/libalpm/hooks/sdboot-kernel-update.hook" | ||
install -D -m644 sdboot-kernel-remove.hook "${pkgdir}/usr/share/libalpm/hooks/sdboot-kernel-remove.hook" | ||
install -D -m644 sdboot-systemd-update.hook "${pkgdir}/usr/share/libalpm/hooks/sdboot-systemd-update.hook" | ||
install -d -m755 "${pkgdir}/etc/sdboot-manage.conf.d/" | ||
install -d -m755 "${pkgdir}/usr/lib/sdboot-manage.conf.d/" | ||
} |