summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD3
-rw-r--r--glib.install20
3 files changed, 2 insertions, 24 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 71898d87123b..89d8ef6ccecc 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,8 @@
pkgbase = glib
pkgdesc = Common C routines used by Gtk+ and other libs
pkgver = 1.2.10
- pkgrel = 13
+ pkgrel = 14
url = http://www.gtk.org/
- install = glib.install
arch = i686
arch = x86_64
license = LGPL
diff --git a/PKGBUILD b/PKGBUILD
index 9ef614b8fbc9..24da428b56d7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,14 +3,13 @@
pkgname=glib
pkgver=1.2.10
-pkgrel=13
+pkgrel=14
pkgdesc="Common C routines used by Gtk+ and other libs"
arch=('i686' 'x86_64')
url="http://www.gtk.org/"
license=('LGPL')
depends=('glibc' 'sh')
options=('!makeflags')
-install=glib.install
source=(ftp://ftp.gnome.org/pub/gnome/sources/glib/1.2/${pkgname}-${pkgver}.tar.gz
gcc340.patch aclocal-fixes.patch glib1-autotools.patch)
sha1sums=('e5a9361c594608d152d5d9650154c2e3260b87fa'
diff --git a/glib.install b/glib.install
deleted file mode 100644
index c0046feba0f3..000000000000
--- a/glib.install
+++ /dev/null
@@ -1,20 +0,0 @@
-infodir=usr/share/info
-filelist=(glib.info.gz)
-
-post_install() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
- install-info $infodir/$file $infodir/dir 2> /dev/null
- done
-}
-
-post_upgrade() {
- post_install $1
-}
-
-pre_remove() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
- install-info --delete $infodir/$file $infodir/dir 2> /dev/null
- done
-}