mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
extra/libjpg-turbo to 1.3.0-2
This commit is contained in:
parent
56522da018
commit
feb7270f36
1 changed files with 12 additions and 23 deletions
|
@ -9,51 +9,40 @@
|
|||
plugrel=1
|
||||
|
||||
pkgname=libjpeg-turbo
|
||||
pkgver=1.2.1
|
||||
pkgrel=1
|
||||
pkgver=1.3.0
|
||||
pkgrel=2
|
||||
pkgdesc="libjpeg derivative with accelerated baseline JPEG compression and decompression"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://libjpeg-turbo.virtualgl.org/"
|
||||
license=('GPL' 'custom')
|
||||
depends=('glibc')
|
||||
#makedepends=('nasm')
|
||||
provides=('libjpeg=8.0.2')
|
||||
conflicts=('libjpeg')
|
||||
replaces=('libjpeg')
|
||||
provides=('libjpeg=8.0.2' 'turbojpeg')
|
||||
conflicts=('libjpeg' 'turbojpeg')
|
||||
replaces=('libjpeg' 'turbojpeg')
|
||||
options=('!libtool')
|
||||
source=(http://sourceforge.net/projects/$pkgname/files/$pkgver/$pkgname-$pkgver.tar.gz)
|
||||
sha1sums=('a4992e102c6d88146709e8e6ce5896d5d0b5a361')
|
||||
sha1sums=('1792c964b35604cebd3a8846f1ca6de5976e9c28')
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
|
||||
# put documentation in a reasonable directory...
|
||||
sed -i "/docdir = /s#/doc#/doc/libjpeg-turbo#" Makefile.in
|
||||
sed -i "/exampledir = /s#/doc#/doc/libjpeg-turbo#" Makefile.in
|
||||
|
||||
cd $pkgname-$pkgver
|
||||
./configure --prefix=/usr --with-jpeg8 --mandir=/usr/share/man --without-simd
|
||||
make
|
||||
}
|
||||
|
||||
check() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
|
||||
make test
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
|
||||
make DESTDIR="$pkgdir/" install
|
||||
|
||||
cd $pkgname-$pkgver
|
||||
make DESTDIR="$pkgdir/" docdir=/usr/share/doc/libjpeg-turbo \
|
||||
exampledir=/usr/share/doc/libjpeg-turbo install
|
||||
|
||||
# provide jpegint.h as it is required by various software
|
||||
install -m644 jpegint.h "$pkgdir/usr/include/"
|
||||
|
||||
# do not distributre libturbojpeg as it is unversioned
|
||||
rm "$pkgdir"/usr/lib/libturbojpeg.{so,a}
|
||||
rm "$pkgdir/usr/include/turbojpeg.h"
|
||||
rm "$pkgdir/usr/bin/tjbench"
|
||||
|
||||
|
||||
install -dm755 "$pkgdir/usr/share/licenses/libjpeg-turbo/"
|
||||
ln -s ../../doc/libjpeg-turbo/README \
|
||||
"$pkgdir/usr/share/licenses/libjpeg-turbo/README"
|
||||
|
|
Loading…
Reference in a new issue