diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-11-09 12:30:57 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-11-09 12:30:57 -0300 |
commit | 3282ccb6286f172872d887baf49e623c51e0a157 (patch) | |
tree | 73ddd891395a089f724fd9cbcb95c6a28e1ffcce /extra/libthai | |
parent | f22839d3ad483a975a0c5955964bf257c0a0af6b (diff) | |
parent | ddba9670c1518d9b420db6a6dca01a4a4a4136c7 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community-testing/virtualbox-modules/PKGBUILD
community-testing/virtualbox/PKGBUILD
community-testing/virtualbox/vbox-service.rc
community-testing/virtualbox/vboxdrv-reference.patch
core/cryptsetup/PKGBUILD
core/ed/PKGBUILD
core/module-init-tools/PKGBUILD
libre/audacious-plugins-libre/PKGBUILD
Diffstat (limited to 'extra/libthai')
-rw-r--r-- | extra/libthai/PKGBUILD | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/extra/libthai/PKGBUILD b/extra/libthai/PKGBUILD index 4de54376a..cf684ed66 100644 --- a/extra/libthai/PKGBUILD +++ b/extra/libthai/PKGBUILD @@ -1,23 +1,27 @@ -# $Id: PKGBUILD 118469 2011-04-07 08:07:24Z jgc $ +# $Id: PKGBUILD 142250 2011-11-07 09:20:43Z jgc $ # Maintainer: Jan de Groot <jgc@archlinux.org> # Contributor: Chaiwat Suttipongsakul <cwt114@gmail.com> pkgname=libthai -pkgver=0.1.15 +pkgver=0.1.16 pkgrel=1 pkgdesc="Thai language support routines" url="http://linux.thai.net/projects/libthai" arch=('i686' 'x86_64' 'mips64el') license=('LGPL') -depends=('libdatrie>=0.2.3') +depends=('libdatrie') makedepends=('pkgconfig') options=('!libtool' '!emptydirs') source=(http://linux.thai.net/pub/thailinux/software/${pkgname}/${pkgname}-${pkgver}.tar.gz) -md5sums=('3bc6d925eae36317aac8676be49a5741') +md5sums=('631ae09f531db6c94aedcc7ce226d6a5') build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr --disable-static make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install } |