Well, this package exists neither in the Manjaro repositories nor in the AUR, but there is a way of installing a Debian/Ubuntu package in Arch-based distributions, and it’s not too difficult.
First, you must enable support for the AUR in pamac — the “Add/Remove Software” application in your system menu. Then, issue the following command…
pamac build debtap
This will install the debtap tool on your system, and then with said tool, you can convert your .deb package into an Arch Linux Package Manager package, and install it into your system.
At this point, (the ALPM version of) the package will also be registered in your package manager’s database, so that you can remove it by way of pacman or pamac later.
pamac info local-by-flywheel-bin
Name : local-by-flywheel-bin
Version : 9.2.9-6887
Description : A program to create a local WordPress development environment.
URL : https://localbyflywheel.com/
Licenses : custom:proprietary
Repository : AUR
Groups : --
Depends On : libxcrypt-compat numactl ncurses5-compat-libs libaio gtk3 nss libjpeg-turbo libxss libxslt
Optional Dependencies : --
Make Dependencies : --
Check Dependencies : --
Provides : --
Replaces : --
Conflicts With : --
Maintainer : peddamax
First Submitted : Sat 18 Jan 2020 00:19:10
Last Modified : Thu 23 Oct 2025 08:04:08
Votes : 24
Out of Date : --
Then there is the debtap package - also useful - in learning how to convert a Debian package to PKGBUILD
Using the AUR package will require you to read the comment thread on the AUR package and make an informed decision on how to proceed with the ncurses5-compat-lib which is a required dependency.
AUR (en) - wordpress-studio-git – A free desktop app that helps developers streamline their local WordPress development workflow.(Use system-wide electron)
In this instance, @scotty65 has already provided the solution:
If you look closely at the PKGBUILD you will see that the package is assembled for use with Arch/Manjaro using the .rpm file that you might otherwise download from the official site:
# Maintainer: Evangelos Athanasiadis <dyrer@yandex.com>
# Maintainer: Peter Kerschl <git@pmke.de>
pkgname=local-by-flywheel-bin
_pkgname=local-by-flywheel
pkgver=9.2.9
pkgrel=6887
pkgdesc="A program to create a local WordPress development environment."
arch=('x86_64')
url="https://localbyflywheel.com/"
license=('custom:proprietary')
depends=(
'libxcrypt-compat'
'numactl'
'ncurses5-compat-libs'
'libaio'
'gtk3'
'nss'
'libjpeg-turbo'
'libxss'
'libxslt'
)
options=('emptydirs')
source=("https://cdn.localwp.com/releases-stable/$pkgver+$pkgrel/local-$pkgver-linux.rpm")
sha1sums=('78869bb2d96500230de68ad24cc4340dbf21ae61')
package() {
mv $srcdir/usr $pkgdir/ # /usr & /opt are top-level dirs in the package
mv $srcdir/opt $pkgdir/
#Create symlink the executable to /usr/bin
mkdir "$pkgdir"/usr/bin
ln -s /opt/Local/local "$pkgdir"/usr/bin/$_pkgname
#Setuid on chrome-sandbox
chmod u+s "$pkgdir"/opt/Local/chrome-sandbox
cd $pkgdir/
}
Building the package via the AUR should install LocalWP to your local machine without much effort. Please observe the usual warnings about use of the AUR – follow the links also given (above).