forked from ChimeraOS/chimeraos
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
honjow
committed
Sep 27, 2023
1 parent
b4c27a4
commit 0cbd44b
Showing
2 changed files
with
26 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Maintainer: Alesh Slovak <[email protected]> | ||
|
||
pkgname=frzr | ||
pkgver=0.14.4 | ||
pkgrel=1 | ||
pkgdesc="A deployment and update system for read-only btrfs subvolume based operating systems" | ||
arch=('any') | ||
url="https://github.com/honjow/frzr" | ||
license=('MIT') | ||
depends=('btrfs-progs' 'parted' 'libnewt' 'dosfstools' 'jq' 'util-linux') | ||
source=("$pkgname-$pkgver.tar.gz::https://github.com/honjow/frzr/archive/$pkgver.tar.gz") | ||
md5sums=('SKIP') | ||
|
||
package() { | ||
mkdir -p "$pkgdir/usr/bin" | ||
mkdir -p "$pkgdir/etc/systemd/system" | ||
install -m 755 "$srcdir/frzr-$pkgver/frzr-bootstrap" "$pkgdir/usr/bin" | ||
install -m 755 "$srcdir/frzr-$pkgver/frzr-deploy" "$pkgdir/usr/bin" | ||
install -m 755 "$srcdir/frzr-$pkgver/__frzr-deploy" "$pkgdir/usr/bin" | ||
install -m 755 "$srcdir/frzr-$pkgver/frzr-release" "$pkgdir/usr/bin" | ||
install -m 755 "$srcdir/frzr-$pkgver/frzr-unlock" "$pkgdir/usr/bin" | ||
install -m 755 "$srcdir/frzr-$pkgver/frzr-initramfs" "$pkgdir/usr/bin" | ||
install -m 755 "$srcdir/frzr-$pkgver/frzr-tweaks" "$pkgdir/usr/bin" | ||
install -m 644 "$srcdir/frzr-$pkgver/frzr-autoupdate.service" "$pkgdir/etc/systemd/system" | ||
install -m 644 "$srcdir/frzr-$pkgver/frzr-autoupdate.timer" "$pkgdir/etc/systemd/system" | ||
} |