mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 13:07:13 +08:00
25 lines
680 B
Bash
25 lines
680 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=sdl_net
|
|
pkgver=1.2.7
|
|
pkgrel=4
|
|
pkgdesc="A small sample cross-platform networking library"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.libsdl.org/projects/SDL_net/"
|
|
license=('GPL')
|
|
depends=('sdl')
|
|
options=('!libtool')
|
|
source=(http://www.libsdl.org/projects/SDL_net/release/SDL_net-${pkgver}.tar.gz)
|
|
md5sums=('6bd4662d1423810f3140d4da21b6d912')
|
|
|
|
build() {
|
|
cd ${srcdir}/SDL_net-${pkgver}
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
}
|