Skip to content

Commit

Permalink
Fix linker usage and missing dependencies in AppImage
Browse files Browse the repository at this point in the history
  • Loading branch information
hwittenborn committed Dec 29, 2022
1 parent c3f41b9 commit 1e03f3d
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.2] - 2022-12-29
### Changed
- Fixed linker usage and missing dependencies in AppImage.

## [0.1.1] - 2022-12-29
### Changed
- Fixed MPR packaging.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "celeste"
version = "0.1.1"
version = "0.1.2"
edition = "2021"

[dependencies]
Expand Down
7 changes: 6 additions & 1 deletion appimage/AppImageBuilder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ AppDir:
id: com.hunterwittenborn.Celeste
name: Celeste
icon: com.hunterwittenborn.Celeste
version: 0.1.1
version: 0.1.2
exec: bin/bash
exec_args: '-c "${APPDIR}/usr/bin/celeste-wrapper ${@}"'
apt:
Expand All @@ -24,6 +24,11 @@ AppDir:
include:
- bash
- libadwaita-1-0
- liblzo2-2
- libxcb-render0
- libxcb-shm0
- libwayland-client0
- libwayland-egl1
- rclone
after_bundle: |
chmod -x AppDir/usr/bin/{celeste,rclone} # See https://github.com/AppImageCrafters/appimage-builder/issues/284.
Expand Down
2 changes: 1 addition & 1 deletion appimage/wrapper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ cp "${APPDIR}"/* "${tmpdir}" -r
cd "${tmpdir}"

chmod +x usr/bin/{celeste,rclone}
usr/bin/celeste "${@}" || true
LD_LIBRARY_PATH="${PWD}/usr/lib" usr/bin/celeste "${@}" || true

rm "${tmpdir}" -r
2 changes: 1 addition & 1 deletion makedeb/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Maintainer: Hunter Wittenborn <hunter@hunterwittenborn.com>
pkgname=celeste
pkgver=0.1.1
pkgver=0.1.2
pkgrel=1
pkgdesc='GUI file synchronization client that can sync with any cloud provider'
arch=('any')
Expand Down

0 comments on commit 1e03f3d

Please sign in to comment.