mirror of
https://gitdl.cn/https://github.com/chakralinux/lib32.git
synced 2025-01-24 01:42:15 +08:00
added new lib32-giflib
This commit is contained in:
parent
aedfed7180
commit
eb3220deef
48
lib32-giflib/PKGBUILD
Normal file
48
lib32-giflib/PKGBUILD
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
# Lib32 Packages for Chakra, part of chakra-project.org
|
||||||
|
#
|
||||||
|
# maintainer (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
||||||
|
# maintainer (x86_64): Anke Boersma <abveritas[at]chakra-project[dot]org>
|
||||||
|
|
||||||
|
_pkgbasename=giflib
|
||||||
|
pkgname=lib32-$_pkgbasename
|
||||||
|
pkgver=4.1.6
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="A library for reading and writing gif images (32-bit)"
|
||||||
|
url="http://sourceforge.net/projects/giflib/"
|
||||||
|
arch=('x86_64')
|
||||||
|
license=('MIT')
|
||||||
|
depends=('lib32-libx11' 'lib32-libsm' $_pkgbasename)
|
||||||
|
makedepends=(gcc-multilib)
|
||||||
|
provides=("lib32-libungif=${pkgver}")
|
||||||
|
conflicts=('lib32-libungif')
|
||||||
|
replaces=('lib32-libungif')
|
||||||
|
options=('!libtool')
|
||||||
|
source=(http://downloads.sourceforge.net/sourceforge/giflib/${_pkgbasename}-${pkgver}.tar.bz2)
|
||||||
|
md5sums=('7125644155ae6ad33dbc9fc15a14735f')
|
||||||
|
|
||||||
|
build() {
|
||||||
|
export CC="gcc -m32"
|
||||||
|
export CXX="g++ -m32"
|
||||||
|
export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
|
||||||
|
|
||||||
|
cd ${srcdir}/${_pkgbasename}-${pkgver}
|
||||||
|
./configure --prefix=/usr --libdir=/usr/lib32
|
||||||
|
make
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd ${srcdir}/${_pkgbasename}-${pkgver}
|
||||||
|
|
||||||
|
make DESTDIR=${pkgdir} install
|
||||||
|
|
||||||
|
# libungif compatibility - instructions taken from Redhat specfile
|
||||||
|
MAJOR=`echo ${pkgver} | sed 's/\([0-9]\+\)\..*/\1/'`
|
||||||
|
gcc -shared -Wl,-soname,libungif.so.${MAJOR} -Llib/.libs -lgif -o libungif.so.${pkgver}
|
||||||
|
install -m755 libungif.so.${pkgver} ${pkgdir}/usr/lib32/
|
||||||
|
ln -sf libungif.so.${pkgver} ${pkgdir}/usr/lib32/libungif.so.4
|
||||||
|
ln -sf libungif.so.4 ${pkgdir}/usr/lib32/libungif.so
|
||||||
|
|
||||||
|
rm -rf "${pkgdir}"/usr/{include,share,bin}
|
||||||
|
install -m755 -d ${pkgdir}/usr/share/licenses
|
||||||
|
ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user