mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:17:14 +08:00
28 lines
651 B
Bash
28 lines
651 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakraos.org
|
|
#
|
|
# maintainer (x86_64): AlmAck
|
|
|
|
pkgname=sdl_net
|
|
pkgver=1.2.8
|
|
pkgrel=1
|
|
pkgdesc="A small sample cross-platform networking library"
|
|
arch=('x86_64')
|
|
url="http://www.libsdl.org/projects/SDL_net/"
|
|
license=('GPL')
|
|
depends=('sdl')
|
|
source=(http://www.libsdl.org/projects/SDL_net/release/SDL_net-${pkgver}.tar.gz)
|
|
md5sums=('20e64e61d65662db66c379034f11f718')
|
|
|
|
build() {
|
|
cd "$srcdir/SDL_net-$pkgver"
|
|
./configure --prefix=/usr --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/SDL_net-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
|
} |