summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--abs/core-testing/libjpeg6/PKGBUILD2
-rw-r--r--abs/core-testing/libjpeg6/libjpeg6.install24
-rw-r--r--abs/core-testing/mjpegtools/PKGBUILD2
3 files changed, 10 insertions, 18 deletions
diff --git a/abs/core-testing/libjpeg6/PKGBUILD b/abs/core-testing/libjpeg6/PKGBUILD
index 098b6b7..659aaf6 100644
--- a/abs/core-testing/libjpeg6/PKGBUILD
+++ b/abs/core-testing/libjpeg6/PKGBUILD
@@ -3,7 +3,7 @@
# Committer: Judd Vinet <jvinet@zeroflux.org>
pkgname=libjpeg6
pkgver=6b
-pkgrel=10
+pkgrel=11
pkgdesc="Library of JPEG support functions"
arch=('i686' 'x86_64')
url="http://ijg.org"
diff --git a/abs/core-testing/libjpeg6/libjpeg6.install b/abs/core-testing/libjpeg6/libjpeg6.install
index 9ad4afe..0d3173d 100644
--- a/abs/core-testing/libjpeg6/libjpeg6.install
+++ b/abs/core-testing/libjpeg6/libjpeg6.install
@@ -1,25 +1,17 @@
# arg 1: the new package version
post_install() {
- if grep -q libjpeg6 /etc/ld.so.conf
- then
- exit
- else
- echo "/opt/libjpeg6/include" >> /etc/ld.so.conf
- ldconfig
- fi
- ln -s /opt/libjpeg6/lib/libjpeg.so.62 /usr/lib/libjpeg.so.62
+ grep -v libjpeg6 /etc/ld.so.conf > /tmp/ld.so.conf
+ mv /tmp/ld.so.conf /etc/ld.so.conf
+ echo "/opt/libjpeg6/lib" >> /etc/ld.so.conf
+ ldconfig
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
- if grep -q libjpeg6 /etc/ld.so.conf
- then
- exit
- else
- echo "/opt/libjpeg6/include" >> /etc/ld.so.conf
- ldconfig
- fi
- ln -sf /opt/libjpeg6/lib/libjpeg.so.62 /usr/lib/libjpeg.so.62
+ grep -v libjpeg6 /etc/ld.so.conf > /tmp/ld.so.conf
+ mv /tmp/ld.so.conf /etc/ld.so.conf
+ echo "/opt/libjpeg6/lib" >> /etc/ld.so.conf
+ ldconfig
}
# arg 1: the old package version
post_remove() {
diff --git a/abs/core-testing/mjpegtools/PKGBUILD b/abs/core-testing/mjpegtools/PKGBUILD
index 4265256..13c9061 100644
--- a/abs/core-testing/mjpegtools/PKGBUILD
+++ b/abs/core-testing/mjpegtools/PKGBUILD
@@ -4,7 +4,7 @@
pkgname=mjpegtools
pkgver=1.9.0
-pkgrel=10
+pkgrel=11
pkgdesc="The mjpeg programs are a set of tools that can do recording of videos and playback, simple cut-and-paste editing and the MPEG compression of audio and video under Linux. "
arch=(i686 x86_64)
license=('GPL')