diff options
author | xengineering <me@xengineering.eu> | 2023-06-05 19:13:19 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-06-05 19:21:55 +0200 |
commit | 73be8055a93748f320de14f9e168f062f65233c3 (patch) | |
tree | 6d615dc090535ba6fee78e407b48673478415477 | |
parent | 5303634366bf46c2323be36b4d60c53748181677 (diff) | |
download | pkgbuilds-73be8055a93748f320de14f9e168f062f65233c3.tar pkgbuilds-73be8055a93748f320de14f9e168f062f65233c3.tar.zst pkgbuilds-73be8055a93748f320de14f9e168f062f65233c3.zip |
Update limox packaging
This is necessary since the project switched from C / SDL to Golang /
GioUI.
-rw-r--r-- | limox/PKGBUILD | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/limox/PKGBUILD b/limox/PKGBUILD index 70eff79..b8271b7 100644 --- a/limox/PKGBUILD +++ b/limox/PKGBUILD @@ -6,19 +6,15 @@ pkgdesc="Linux on mobile XMPP (LimoX) client" arch=('x86_64') url="https://cgit.xengineering.eu/${pkgname}" license=('GPL3') -depends=('licenses' 'libstrophe' 'gtk4') -makedepends=('meson' 'ninja' 'gcc') +depends=('licenses') +makedepends=('make' 'go') source=("git+${url}") md5sums=('SKIP') build() { - cd "$pkgname" - meson build - ninja -C build + make -C "$pkgname" } package() { - cd "$pkgname" - install -Dm 755 build/limox "$pkgdir/usr/bin/limox" - install -Dm 644 limox.desktop "$pkgdir/usr/share/applications/limox.desktop" + make -C "$pkgname" DESTDIR="$pkgdir" install } |