mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
44 lines
1.1 KiB
Bash
44 lines
1.1 KiB
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
pkgname=freeimage
|
|
pkgver=3.15.1
|
|
pkgrel=1
|
|
pkgdesc="Library project for developers who would like to support popular graphics image formats."
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL' 'custom:FIPL')
|
|
url="http://freeimage.sourceforge.net/"
|
|
depends=('gcc-libs')
|
|
makedepends=('hd2u')
|
|
categories=('programming')
|
|
source=("http://downloads.sourceforge.net/project/freeimage/Source%20Distribution/${pkgver}/FreeImage${pkgver//./}.zip"
|
|
'gcc4.5_ln.patch')
|
|
md5sums=('450d2ff278690b0d1d7d7d58fad083cc'
|
|
'f85279b2572a0a9e03775909cd9cd759')
|
|
|
|
build() {
|
|
cp -r FreeImage FreeImagefip
|
|
|
|
cd FreeImage
|
|
patch -Np1 < $srcdir/gcc4.5_ln.patch
|
|
make
|
|
|
|
cd ${srcdir}/FreeImagefip
|
|
patch -Np1 < $srcdir/gcc4.5_ln.patch
|
|
make -f Makefile.fip
|
|
}
|
|
|
|
package() {
|
|
cd FreeImage
|
|
make DESTDIR=$pkgdir install
|
|
|
|
cd $srcdir/FreeImagefip
|
|
make -f Makefile.fip DESTDIR=$pkgdir install
|
|
|
|
# License.
|
|
install -D -m644 $srcdir/FreeImage/license-fi.txt \
|
|
$pkgdir/usr/share/licenses/$pkgname/license-fi.txt
|
|
}
|