glib2/gettext, requires to follow..

This commit is contained in:
Drake Justice 2012-02-25 20:38:31 -05:00
parent 314d3a38c6
commit f8ccdb5830
2 changed files with 11 additions and 9 deletions

View File

@ -4,8 +4,6 @@
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
# include global config
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=gettext
pkgver=0.18.1.1
@ -33,3 +31,4 @@ package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}

View File

@ -5,28 +5,30 @@
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
pkgname=glib2
pkgver=2.28.8
pkgver=2.30.2
pkgrel=1
pkgdesc="Common C routines used by GTK+ 2.4 and other libs"
pkgdesc="Common C routines used by GTK+ and other libs"
url="http://www.gtk.org/"
arch=(i686 x86_64)
license=('LGPL')
depends=('pcre>=8.02')
makedepends=('pkgconfig' 'python2')
depends=('pcre' 'libffi')
makedepends=('pkgconfig' 'python')
options=('!libtool' '!docs')
source=(http://ftp.gnome.org/pub/GNOME/sources/glib/2.28/glib-${pkgver}.tar.bz2
source=(http://ftp.gnome.org/pub/GNOME/sources/glib/2.30/glib-${pkgver}.tar.bz2
glib2.sh
glib2.csh)
sha256sums=('222f3055d6c413417b50901008c654865e5a311c73f0ae918b0a9978d1f9466f'
sha256sums=('94b1f1a1456c67060ca868d299bef3f7268a2c1c5c360aabb7149d4d9b2fdcd3'
'9456872cdedcc639fb679448d74b85b0facf81033e27157d2861b991823b5a2a'
'8d5626ffa361304ad3696493c0ef041d0ab10c857f6ef32116b3e2878ecf89e3')
build() {
cd "${srcdir}/glib-${pkgver}"
./configure --prefix=/usr \
--sysconfdir=/etc \
--with-pcre=system \
--disable-fam
make
make DESTDIR="${pkgdir}" install
@ -37,4 +39,5 @@ build() {
for _i in "${pkgdir}/etc/bash_completion.d/"*; do
chmod -x "${_i}"
done
}
}