mirror of
https://github.com/Xetibo/ReSet.git
synced 2025-04-04 13:02:01 +02:00
22 lines
516 B
Bash
22 lines
516 B
Bash
# Maintainer: Fabio Lenherr <dashie@dashie.org>
|
|
|
|
pkgname=reset
|
|
pkgver=1.2.3
|
|
pkgrel=0
|
|
arch=('x86_64')
|
|
pkgdir="/usr/bin/${pkgname}"
|
|
pkgdesc="A wip universal Linux settings application."
|
|
depends=('rust' 'gtk4' 'dbus')
|
|
|
|
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"
|
|
}
|
|
|