mirror of
https://github.com/Xetibo/ReSet.git
synced 2025-09-08 11:29:17 +02:00
feat: Add .desktop files and add PKGBUILD for arch
This commit is contained in:
parent
1868e26a2f
commit
fc22b5c807
5 changed files with 48 additions and 1 deletions
20
PKGBUILD
Normal file
20
PKGBUILD
Normal file
|
@ -0,0 +1,20 @@
|
|||
# Maintainer: Fabio Lenherr <dashie@dashie.org>
|
||||
|
||||
pkgname=reset
|
||||
pkgver=0.1
|
||||
pkgrel=1
|
||||
arch=('x86_64')
|
||||
pkgdir="/usr/bin/${pkgname}"
|
||||
pkgdesc="A wip universal Linux settings application."
|
||||
depends=('rust' 'gtk4' 'dbus' 'gendesk')
|
||||
|
||||
build() {
|
||||
cargo build --release
|
||||
}
|
||||
|
||||
package() {
|
||||
cd ..
|
||||
install -Dm755 target/release/"$pkgname" "$pkgdir"/usr/bin/"$pkgname"
|
||||
install -Dm644 "$pkgname.desktop" "$pkgdir/usr/share/applications/$pkgname.desktop"
|
||||
install -Dm644 "src/resources/icons/ReSet.svg" "$pkgdir/usr/share/pixmaps/ReSet.svg"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue