diff options
author | xengineering <me@xengineering.eu> | 2022-08-22 10:56:02 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2022-08-22 10:56:02 +0200 |
commit | 43698b7d80c311e41195c771c586e3c271aa48f9 (patch) | |
tree | 347f0e766950c4c31b16626734dd80a5fd14753d | |
parent | eacc2a03178d3168e20271f880add18b18be39bd (diff) | |
download | pkgbuilds-43698b7d80c311e41195c771c586e3c271aa48f9.tar pkgbuilds-43698b7d80c311e41195c771c586e3c271aa48f9.tar.zst pkgbuilds-43698b7d80c311e41195c771c586e3c271aa48f9.zip |
Add first packaging file for LimoX
https://xengineering.eu/git/limox
-rw-r--r-- | limox/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/limox/PKGBUILD b/limox/PKGBUILD new file mode 100644 index 0000000..70eff79 --- /dev/null +++ b/limox/PKGBUILD @@ -0,0 +1,24 @@ +# Maintainer: xengineering <me@xengineering.eu> +pkgname=limox +pkgver=dev +pkgrel=1 +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') +source=("git+${url}") +md5sums=('SKIP') + +build() { + cd "$pkgname" + meson build + ninja -C build +} + +package() { + cd "$pkgname" + install -Dm 755 build/limox "$pkgdir/usr/bin/limox" + install -Dm 644 limox.desktop "$pkgdir/usr/share/applications/limox.desktop" +} |