pkgbuild: fixup names

This commit is contained in:
DashieTM 2024-06-07 01:39:45 +02:00
parent 35dfec596d
commit 563aa16f80
3 changed files with 4 additions and 6 deletions

View file

@ -18,4 +18,4 @@ jobs:
uses: softprops/action-gh-release@v1
with:
files: |
reset-${{github.ref_name}}-0-x86_64.pkg.tar.zst
ReSet-${{github.ref_name}}-0-x86_64.pkg.tar.zst

View file

@ -14,7 +14,6 @@ jobs:
- name: Build rust package
run: |
cargo build --release --verbose
mv ./target/release/reset ./target/release/ReSet
- name: Build Flatpak
run: "cd flatpak\npython3 flatpak-generator.py ../Cargo.lock -o cargo-sources.json \nflatpak-builder build org.Xetibo.ReSet.json --force-clean \nflatpak build-export export build\nflatpak build-bundle export reset.flatpak org.Xetibo.ReSet\n"
- name: Build Ubuntu package

View file

@ -1,6 +1,6 @@
# Maintainer: Fabio Lenherr <dashie@dashie.org>
pkgname=reset
pkgname=ReSet
pkgver=1.2.5
pkgrel=0
arch=('x86_64')
@ -14,8 +14,7 @@ build() {
package() {
cd ..
install -Dm755 target/release/"$pkgname" "$pkgdir"/usr/bin/ReSet
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"
install -Dm644 "src/resources/icons/$pkgname.svg" "$pkgdir/usr/share/pixmaps/$pkgname.svg"
}