mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 18:47:15 +08:00
30 lines
832 B
Bash
30 lines
832 B
Bash
# $Id: PKGBUILD 70836 2010-03-02 03:21:48Z allan $
|
|
# Maintainer: Allan McRae <allan@archlinux.org>
|
|
# Contributor: Judd Vinet <jvinet@zeroflux.org>
|
|
|
|
pkgname=libjpeg
|
|
pkgver=8.0.1
|
|
_pkgver=8a
|
|
pkgrel=1
|
|
pkgdesc="Library of JPEG support functions"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.ijg.org/"
|
|
license=('custom')
|
|
depends=('glibc')
|
|
makedepends=('libtool')
|
|
options=('!libtool')
|
|
source=(http://www.ijg.org/files/jpegsrc.v${_pkgver}.tar.gz)
|
|
md5sums=('5146e68be3633c597b0d14d3ed8fa2ea')
|
|
|
|
build() {
|
|
cd $srcdir/jpeg-${_pkgver}
|
|
./configure --prefix=/usr --enable-shared --enable-static
|
|
make || return 1
|
|
make prefix=$pkgdir/usr mandir=$pkgdir/usr/share/man install
|
|
|
|
# See FS#11116 - re-assess current need sometime...
|
|
install -m644 jpegint.h $pkgdir/usr/include
|
|
|
|
install -Dm644 README $pkgdir/usr/share/licenses/libjpeg/README
|
|
}
|