diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-10-11 14:04:57 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-10-11 14:04:57 +0000 |
commit | 7713e3748dd5ae355e155f2ac6fe990b80493223 (patch) | |
tree | 4d3ba18cdcf1df9aa9c6d2f35bb61ec6b4a4b55b /main/glib | |
parent | 309ca274ae1fdbd92e62cbb965755fe81bea41f4 (diff) | |
download | aports-7713e3748dd5ae355e155f2ac6fe990b80493223.tar.bz2 aports-7713e3748dd5ae355e155f2ac6fe990b80493223.tar.xz |
main/glib: remove autoconf dep
I think it was "needed" due to we touched an .in file.
In reality, the sed line did not modify anything in recent glibs so
we simply remove the sed line. Then should not autoconf/automake be
needed.
Diffstat (limited to 'main/glib')
-rw-r--r-- | main/glib/APKBUILD | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/main/glib/APKBUILD b/main/glib/APKBUILD index c88b9424fe..a9c2f9b8e5 100644 --- a/main/glib/APKBUILD +++ b/main/glib/APKBUILD @@ -1,15 +1,14 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=glib pkgver=2.34.0 -pkgrel=1 +pkgrel=2 pkgdesc="Common C routines used by Gtk+ and other libs" url="http://www.gtk.org" arch="all" license='GPL' depends= triggers="$pkgname.trigger=/usr/share/glib-2.0/schemas:/usr/lib/gio/modules" -depends_dev="autoconf automake perl gettext-dev libiconv-dev zlib-dev bzip2-dev - libffi-dev" +depends_dev="perl gettext-dev libiconv-dev zlib-dev bzip2-dev libffi-dev" makedepends="$depends_dev" source="http://ftp.gnome.org/pub/gnome/sources/glib/${pkgver%.*}/glib-$pkgver.tar.xz" subpackages="$pkgname-doc $pkgname-dev $pkgname-lang" @@ -19,8 +18,6 @@ _builddir="$srcdir/$pkgname-$pkgver" prepare() { cd "$_builddir" - # busybox env does not handle the -w after perl. we remove it for now - sed -i -e '1,1s/ -w//' gobject/glib-mkenums.in } build() { |