mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 21:57:17 +08:00
26 lines
818 B
Bash
26 lines
818 B
Bash
# $Id: PKGBUILD 63248 2010-01-16 20:44:09Z jgc $
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
# Maintainer: judd <jvinet@zeroflux.org>
|
|
pkgname=libmng
|
|
pkgver=1.0.10
|
|
pkgrel=3
|
|
pkgdesc="A collection of routines used to create and manipulate MNG format graphics files"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.libmng.com/"
|
|
license=('custom')
|
|
depends=('zlib' 'libjpeg>=8')
|
|
options=(!libtool)
|
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('a464ae7d679781beebdf7440d144b7bd')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
ln -s makefiles/configure.in .
|
|
ln -s makefiles/Makefile.am .
|
|
autoreconf --force --install
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
|
|
}
|