diff options
Diffstat (limited to 'community/sdl2_net/PKGBUILD')
-rw-r--r-- | community/sdl2_net/PKGBUILD | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/community/sdl2_net/PKGBUILD b/community/sdl2_net/PKGBUILD deleted file mode 100644 index 6deb7d889..000000000 --- a/community/sdl2_net/PKGBUILD +++ /dev/null @@ -1,30 +0,0 @@ -# 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" -} |