diff options
Diffstat (limited to 'community/brise/PKGBUILD')
-rw-r--r-- | community/brise/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/community/brise/PKGBUILD b/community/brise/PKGBUILD new file mode 100644 index 000000000..08a24307e --- /dev/null +++ b/community/brise/PKGBUILD @@ -0,0 +1,27 @@ +# $Id$ +# Maintainer: Felix Yan <felixonmars@gmail.com> +# Contributor: GONG Chen <chen dot sst at gmail dot com> + +pkgname=brise +pkgver=0.13 +pkgrel=2 +pkgdesc="Rime schema repository" +arch=('i686' 'x86_64') +url="http://code.google.com/p/rimeime/" +license=('GPL3') +depends=() +makedepends=('cmake' 'librime>=0.9.3') +provides=('librime-data') +conflicts=('librime<0.9.3' 'ibus-rime<0.9.3') +source=("http://rimeime.googlecode.com/files/$pkgname-$pkgver.tar.gz") + +build() { + cd "${srcdir}/$pkgname" + make +} + +package() { + cd "${srcdir}/$pkgname" + make DESTDIR="$pkgdir" install +} +md5sums=('2346866c7a10e3f7f210a551083b31ac') |