Date: Sunday, March 15, 2020 @ 11:01:20 Author: felixonmars Revision: 597767
addpkg: fcitx5-anthy 0.0.0.20200312-1 Added: fcitx5-anthy/ fcitx5-anthy/repos/ fcitx5-anthy/trunk/ fcitx5-anthy/trunk/PKGBUILD ----------+ PKGBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) Added: fcitx5-anthy/trunk/PKGBUILD =================================================================== --- fcitx5-anthy/trunk/PKGBUILD (rev 0) +++ fcitx5-anthy/trunk/PKGBUILD 2020-03-15 11:01:20 UTC (rev 597767) @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 226039 2017-04-27 13:52:30Z felixonmars $ +# Maintainer: Felix Yan <[email protected]> +# Contributor: csslayer <wengxt AT gmail com> + +pkgname=fcitx5-anthy +pkgver=0.0.0.20200312 +_commit=3a2f87455588205cbe390150be8adfbdbaa48d46 +pkgrel=1 +pkgdesc="Anthy Wrapper for Fcitx5" +arch=('x86_64') +url="https://github.com/fcitx/fcitx5-anthy" +license=('GPL') +depends=('fcitx5' 'anthy') +makedepends=('extra-cmake-modules') +source=("https://github.com/fcitx/fcitx5-anthy/archive/$_commit/fcitx5-anthy-$_commit.tar.gz") +sha512sums=('b7a2103c1403759d18232756b4831506eea0b7a588ee2e9ac2891b57e0858af7487eade0c77a43cb26563ad8af56ddde8949a17bcae91a00da78f9c3c5d5b8b1') + +build(){ + cd $pkgname-$_commit + + cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib . + make +} + +package() { + cd $pkgname-$_commit + make DESTDIR="$pkgdir" install +}
