Package Details: stretchly-bin 1.14.0-1

Git Clone URL: https://aur.archlinux.org/stretchly-bin.git (read-only, click to copy)
Package Base: stretchly-bin
Description: The break time reminder app
Upstream URL: https://github.com/hovancik/stretchly/
Licenses: BSD
Conflicts: stretchly
Provides: stretchly
Submitter: l42
Maintainer: l42
Last Packager: l42
Votes: 7
Popularity: 0.000031
First Submitted: 2020-07-26 08:25 (UTC)
Last Updated: 2023-04-15 14:30 (UTC)

Latest Comments

jwillikers commented on 2020-12-27 18:01 (UTC)

Thanks, that's good to know. Everything is working great then!

l42 commented on 2020-12-27 07:11 (UTC)

As for fakeroot and binutils: it's said in the docs that these packages are in base-devel group and shouldn't be listed in PKGBUILD. So maybe the problem is somewhere else

jwillikers commented on 2020-12-26 15:28 (UTC)

Thanks! I got it working though I had to install fakeroot and binutils manually. I'm not sure if I'm just expected to have those installed or if they should be specified in the depends section.

jwillikers commented on 2020-12-26 15:13 (UTC) (edited on 2020-12-26 15:14 (UTC) by jwillikers)

I can't find a great example yet, but I think all the information is available in the PKGBUILD Arch Wiki.

It looks like you can add 'aarch64' to the pkgbuild arch section like so:

arch=('aarch64' 'x86_64')

Then, use keys suffixed with _aarch64 for instructions specific to that architecture. Perhaps like so?

source=(
    "LICENSE::https://raw.githubusercontent.com/hovancik/stretchly/$_rlsver/LICENSE"
)
source_aarch64=(
  "https://github.com/hovancik/stretchly/releases/download/$_rlsver/$_pkgname-$pkgver-arm64.pacman"
)
source_x86_64=(
  "https://github.com/hovancik/stretchly/releases/download/$_rlsver/$_pkgname-$pkgver.pacman"
)
sha256sums=('d4262f71a6c02b19bdbdf760033803c0c7ca24acf2591ba425633f7e3315790a')
sha256sums_aarch64=('9638956a856b4ba195ad5916fd0640def964c6d6423dd13980038c1df2da2c7e')
sha256sums_x86_64=('baa55f75fda425832ef9753df705731f0200ec348d4e4eb3ce528a16acd45da4')

I can test this for you on my Pinebook Pro.

l42 commented on 2020-12-26 14:54 (UTC)

I will look into that, but have no arm device/environment to test at hand. Is there some guide or an example of a multiarch package?

jwillikers commented on 2020-12-26 14:47 (UTC)

Thanks for the update. Would it be possible to add support for the arm64 architecture?

l42 commented on 2020-08-07 04:21 (UTC)

@murlakatamenka Thanks for the tool.

I fixed the problem (it was due to downloading LICENSE as html, which can vary), and pushed the update.

murlakatamenka commented on 2020-08-06 18:43 (UTC)

Hey, thanks for the package! Hashsum for LICENSE is incorrect. You can use updpkgsums from pacman-contrib to easily fix it.