mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 15:07:17 +08:00
23 lines
569 B
Bash
23 lines
569 B
Bash
pkgname=brise
|
|
pkgver=0.35
|
|
pkgrel=1
|
|
pkgdesc="Rime schema repository"
|
|
arch=('x86_64')
|
|
url=" http://rime.im/"
|
|
license=('GPL3')
|
|
makedepends=('cmake' 'librime>=1.0')
|
|
provides=('librime-data')
|
|
conflicts=('librime<0.9.3' 'ibus-rime<0.9.3')
|
|
source=("http://dl.bintray.com/lotem/rime/${pkgname}-${pkgver}.tar.gz")
|
|
sha512sums=('1a2a3ddba9be7089a1b82ce446a3e5dc93a13fff121f861aa1acbdea950f490c9367866902a056296e17de5076a59a54741ceb3a59a9c0ec58b6b7c54f519f3d')
|
|
|
|
build() {
|
|
cd "${srcdir}/$pkgname"
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/$pkgname"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|