diff options
| author | nippy <you@example.com> | 2026-04-18 13:49:56 +0200 |
|---|---|---|
| committer | nippy <you@example.com> | 2026-04-18 13:49:56 +0200 |
| commit | 5d94c0a7d44a2255b81815a52a7056a94a39842d (patch) | |
| tree | 759bdea9645c6a62f9e1e4c001f7d81cccd120d2 /raveos-theme/cosmic/PKGBUILD | |
| parent | e79cdf210b267f21a186255ce1a4d50029439d54 (diff) | |
| download | RaveOS-PKGBUILD-5d94c0a7d44a2255b81815a52a7056a94a39842d.tar.gz RaveOS-PKGBUILD-5d94c0a7d44a2255b81815a52a7056a94a39842d.zip | |
update Raveos themes
Diffstat (limited to 'raveos-theme/cosmic/PKGBUILD')
| -rw-r--r-- | raveos-theme/cosmic/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/raveos-theme/cosmic/PKGBUILD b/raveos-theme/cosmic/PKGBUILD new file mode 100644 index 0000000..36eb655 --- /dev/null +++ b/raveos-theme/cosmic/PKGBUILD @@ -0,0 +1,32 @@ +pkgname=raveos-cosmic-theme +pkgver=0.0.0 +pkgrel=6 +pkgdesc="RaveOS Cosmic theme payload and installer" +arch=('any') +url="https://raveos.local" +license=('custom') +depends=('fastfetch') +install="${pkgname}.install" +source=() +sha256sums=() + +# Build redirection +BUILDDIR="${startdir}/build" +PKGDEST="${startdir}/build" +SRCDEST="${startdir}/build" +SRCPKGDEST="${startdir}/build" +LOGDEST="${startdir}/build" + +package() { + install -dm755 "${pkgdir}/usr/share/raveos/cosmic-theme" + cp -r --no-preserve=ownership "${startdir}/theme-data" "${pkgdir}/usr/share/raveos/cosmic-theme/" + + install -Dm755 "${startdir}/raveos-cosmic-apply.sh" \ + "${pkgdir}/usr/lib/raveos-cosmic-theme/auto-apply.sh" + install -Dm755 "${startdir}/raveos-cosmic-first-login.sh" \ + "${pkgdir}/usr/lib/raveos-cosmic-theme/first-login.sh" + install -Dm644 "${startdir}/raveos-cosmic-theme-apply.service" \ + "${pkgdir}/usr/lib/systemd/system/raveos-cosmic-theme-apply.service" + install -Dm644 "${startdir}/raveos-cosmic-first-login.desktop" \ + "${pkgdir}/etc/xdg/autostart/raveos-cosmic-first-login.desktop" +} |