Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(hakuneko-deb): dpkg does not recognize armv7l #5489

Merged
merged 2 commits into from
Jan 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions packages/hakuneko-deb/hakuneko-deb.pacscript
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name="hakuneko-deb"
gives="hakuneko-desktop"
pkgver="8.3.4"
nightly="20200705.1"
arch=("amd64" "arm64" "armhf" "armv7l" "i386")
arch=("amd64" "arm64" "armhf" "i386")
homepage="https://github.com/manga-download/hakuneko"
pkgdesc="HakuNeko is a cross-platform downloader for manga and anime from various websites"
maintainer="Diegiwg <[email protected]>"
Expand All @@ -20,10 +20,6 @@ case "${CARCH}" in
url="https://github.com/manga-download/hakuneko/releases/download/nightly-${nightly}/hakuneko-desktop_${pkgver}_linux_${CARCH}.deb"
hash="4dabbfa9d775da72499f594bfdda86adc62a5caaa579c73b9d4ccf5d778c903d"
;;
armv7l)
url="https://github.com/manga-download/hakuneko/releases/download/nightly-${nightly}/hakuneko-desktop_${pkgver}_linux_${CARCH}.deb"
hash="b263aaf4b7bb7309b0dfca6fe0fe8f39ecce303927a52aad097c96aef57fc973"
;;
i386)
url="https://github.com/manga-download/hakuneko/releases/download/nightly-${nightly}/hakuneko-desktop_${pkgver}_linux_${CARCH}.deb"
hash="3608ff4e8a3257fffedfa2dcea6501cb6d0d203235a2e4c6e6bbf01b93dce240"
Expand Down