mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-27 00:10:29 +00:00
31 lines
1 KiB
Bash
31 lines
1 KiB
Bash
# $Id: PKGBUILD 33923 2009-04-06 02:32:38Z eric $
|
|
# Maintainer: Daniel Isenmann <daniel@archlinux.org>
|
|
|
|
pkgname=gettext-mono
|
|
pkgver=0.17
|
|
pkgrel=3
|
|
pkgdesc="mono assemblies for GNU internationalization library"
|
|
arch=(i686 x86_64)
|
|
url="http://www.gnu.org/software/gettext"
|
|
license=('GPL3')
|
|
depends=('gcc' 'mono>=1.9')
|
|
source=(ftp://ftp.gnu.org/pub/gnu/gettext/gettext-$pkgver.tar.gz)
|
|
md5sums=('58a2bc6d39c0ba57823034d55d65d606')
|
|
|
|
build() {
|
|
# get rid of that .wapi errors; thanks to brice
|
|
mkdir -p $srcdir/weird
|
|
export MONO_SHARED_DIR=$srcdir/weird
|
|
|
|
cd $srcdir/gettext-$pkgver
|
|
./configure --prefix=/usr --enable-csharp=mono || return 1
|
|
make || return 1
|
|
# libraries are installed manually
|
|
install -Dm644 gettext-runtime/intl-csharp/GNU.Gettext.dll \
|
|
$pkgdir/usr/lib/GNU.Gettext.dll || return 1
|
|
install -Dm644 gettext-tools/src/msgfmt.net.exe \
|
|
$pkgdir/usr/lib/gettext/msgfmt.net.exe || return 1
|
|
install -Dm644 gettext-tools/src/msgunfmt.net.exe \
|
|
$pkgdir/usr/lib/gettext/msgunfmt.net.exe || return 1
|
|
}
|
|
# vim: ft=sh ts=2 et
|