mirror of
https://gitdl.cn/https://github.com/chakralinux/lib32.git
synced 2025-02-13 20:29:03 +08:00
21 lines
629 B
Bash
21 lines
629 B
Bash
# $Id: PKGBUILD 19215 2010-06-21 10:25:56Z ibiru $
|
|
# Maintainer: Mikko Seppälä <t-r-a-y@mbnet.fi>
|
|
_pkgsourcename=sdl
|
|
pkgname=lib32-$_pkgsourcename
|
|
pkgver=1.2.14
|
|
pkgrel=5
|
|
pkgdesc="A library for portable low-level access to a video framebuffer, audio output, mouse, and keyboard"
|
|
url="http://www.libsdl.org"
|
|
arch=('x86_64')
|
|
license=('LGPL')
|
|
groups=('lib32')
|
|
depends=('lib32-glibc')
|
|
source=(ftp://ftp.archlinux.org/extra/os/i686/$_pkgsourcename-$pkgver-$pkgrel-i686.pkg.tar.xz)
|
|
|
|
build() {
|
|
cd $srcdir
|
|
mkdir -p $pkgdir/opt/lib32/usr/lib
|
|
cp -dp usr/lib/*.so* $pkgdir/opt/lib32/usr/lib
|
|
}
|
|
md5sums=('1bdca2ab5af1242e29b96d5d41c7a05b')
|