diff options
Diffstat (limited to 'community/sdl2_net/PKGBUILD')
-rw-r--r-- | community/sdl2_net/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/community/sdl2_net/PKGBUILD b/community/sdl2_net/PKGBUILD new file mode 100644 index 000000000..6deb7d889 --- /dev/null +++ b/community/sdl2_net/PKGBUILD @@ -0,0 +1,30 @@ +# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> + +pkgname=sdl2_net +pkgver=249 +pkgrel=1 +pkgdesc="A small sample cross-platform networking library (Version 2)" +arch=('i686' 'x86_64') +url="http://www.libsdl.org" +license=('MIT') +depends=(sdl2) +makedepends=(mercurial) +options=(!libtool) +source=("sdl2_net::hg+http://hg.libsdl.org/SDL_net#revision=$pkgver") +md5sums=('SKIP') + +build() { + cd "${srcdir}/sdl2_net/" + + ./autogen.sh + ./configure --disable-static --prefix=/usr + make +} + +package() { + cd "${srcdir}/sdl2_net/" + + make DESTDIR="${pkgdir}/" install + + install -Dm644 COPYING.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} |