diff options
author | Fabian Affolter <fabian@affolter-engineering.ch> | 2013-12-02 20:18:23 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-12-03 14:39:34 +0000 |
commit | 33ab27fa2d44bc5ef3fa4351e12e653775ff0551 (patch) | |
tree | 68e428a342636fa4fecb6c5249b8e97fe1d46b67 /main/sdl_image | |
parent | bab0b3d1ca234247cd418a19a5a536837e92db1d (diff) | |
download | aports-33ab27fa2d44bc5ef3fa4351e12e653775ff0551.tar.bz2 aports-33ab27fa2d44bc5ef3fa4351e12e653775ff0551.tar.xz |
main/sdl_image: specify license
Diffstat (limited to 'main/sdl_image')
-rw-r--r-- | main/sdl_image/APKBUILD | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/main/sdl_image/APKBUILD b/main/sdl_image/APKBUILD index 10790c60a0..9ee73320bc 100644 --- a/main/sdl_image/APKBUILD +++ b/main/sdl_image/APKBUILD @@ -2,20 +2,18 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=sdl_image pkgver=1.2.12 -pkgrel=2 +pkgrel=3 pkgdesc="A simple library to load images of various formats as SDL surfaces" url="http://www.libsdl.org/projects/SDL_image/" arch="all" -license="LGPL" -depends= +license="LGPL2+" +depends="" makedepends="sdl-dev libpng-dev libjpeg-turbo-dev tiff-dev zlib-dev" -install= +install="" subpackages="$pkgname-dev" -source="http://www.libsdl.org/projects/SDL_image/release/SDL_image-${pkgver}.tar.gz - " +source="http://www.libsdl.org/projects/SDL_image/release/SDL_image-${pkgver}.tar.gz" _builddir="$srcdir"/SDL_image-$pkgver - prepare() { cd "$_builddir" update_config_sub || return 1 @@ -43,7 +41,6 @@ package() { cd "$_builddir" make DESTDIR="$pkgdir" install || return 1 rm "$pkgdir"/usr/lib/*.la - } md5sums="a0f9098ebe5400f0bdc9b62e60797ecb SDL_image-1.2.12.tar.gz" |