mirror of
https://gitdl.cn/https://github.com/chakralinux/lib32.git
synced 2025-01-24 01:42:15 +08:00
39 lines
1.1 KiB
Bash
39 lines
1.1 KiB
Bash
# 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=v4l-utils
|
|
pkgname=lib32-$_pkgbasename
|
|
pkgver=0.8.3
|
|
pkgrel=2
|
|
pkgdesc="Userspace tools and conversion library for Video 4 Linux (32-bit)"
|
|
arch=('x86_64')
|
|
url="http://freshmeat.net/projects/libv4l"
|
|
provides=("lib32-libv4l=$pkgver")
|
|
replaces=('lib32-libv4l')
|
|
conflicts=('lib32-libv4l')
|
|
license=('LGPL')
|
|
makedepends=('gcc-multilib')
|
|
depends=('lib32-gcc-libs' $_pkgbasename)
|
|
source=(http://linuxtv.org/downloads/v4l-utils/${_pkgbasename}-${pkgver}.tar.bz2)
|
|
sha256sums=('525ebed7ef6e0f6a4bb68fe10403a3725eb1ec31a4c557c68256079b00e283b5')
|
|
|
|
build() {
|
|
cd "${srcdir}/${_pkgbasename}-${pkgver}"
|
|
|
|
sed -i 's|CFLAGS :=|CFLAGS ?=|' Make.rules
|
|
|
|
export CC="gcc -m32"
|
|
export CXX="g++ -m32"
|
|
export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
|
|
|
|
make PREFIX=/usr LIBDIR=/usr/lib32
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${_pkgbasename}-${pkgver}"
|
|
make install PREFIX=/usr LIBDIR=/usr/lib32 DESTDIR="${pkgdir}/"
|
|
rm -rf "${pkgdir}"/{usr/{include,share,bin,sbin},etc}
|
|
}
|