Package Details: fcitx-fbterm-git 0.2.0.r1.ga0ecce1-2

Git Clone URL: https://aur.archlinux.org/fcitx-fbterm-git.git (read-only, click to copy)
Package Base: fcitx-fbterm-git
Description: Fbterm support for fcitx
Upstream URL: https://github.com/fcitx/fcitx-fbterm
Keywords: chinese fbterm fcitx input method tty
Licenses: GPLv2
Provides: fcitx-fbterm
Submitter: realasking
Maintainer: xlucn
Last Packager: xlucn
Votes: 3
Popularity: 0.000000
First Submitted: 2017-08-24 14:06 (UTC)
Last Updated: 2023-05-06 11:59 (UTC)

Dependencies (4)

Required by (0)

Sources (1)

Latest Comments

eclairevoyant commented on 2023-04-01 20:20 (UTC)

Needs cmake and git in makedepends

xlucn commented on 2021-09-20 04:54 (UTC) (edited on 2021-10-11 02:41 (UTC) by xlucn)

Edit: updated the package

My proposed PKGBUILD:

## Maintainer: realasking
pkgname=fcitx-fbterm-git
pkgver=0.2.0.r1.ga0ecce1
pkgrel=1
pkgdesc='Fbterm support for fcitx'
arch=(x86_64 i686)
url='https://github.com/fcitx/fcitx-fbterm'
license=('GPLv2')
depends=('fbterm' 'fcitx')
provides=('fcitx-fbterm')
source=("$pkgname::git+https://github.com/fcitx/fcitx-fbterm")
md5sums=('SKIP')
install=$pkgname.install

pkgver() {
    cd "$pkgname"
    ( set -o pipefail
      git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
      printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
    )
}

build() {
    cd "$pkgname"
    mkdir -p build
    cd build
    cmake .. -DCMAKE_INSTALL_PREFIX=/usr
    make
}

package() {
    cd "$pkgname/build"
    make DESTDIR="${pkgdir}" install
}

m040601 commented on 2021-09-15 11:08 (UTC)

This PKGBUILD hasnt been updated since 2017.

It has a dependency on "fbterm-git". Problem is, "fbterm-git" doesnt exist anymore on AUR. Only "fbterm".

So this, "fcitx-fbterm-git", PKGBUILD fails with:

 -> Could not find all required packages:
         fbterm-git (Wanted by: fcitx-fbterm-git)

micwoj92 commented on 2021-04-03 17:49 (UTC)

Missing dependency fbterm-git