diff options
author | Shackra Sislock <jorgean@lavabit.com> | 2013-07-27 14:57:48 -0600 |
---|---|---|
committer | Shackra Sislock <jorgean@lavabit.com> | 2013-07-27 14:57:48 -0600 |
commit | c5901ce7e2618d91d0745e285a7bffcd0ceaf406 (patch) | |
tree | 0d176ee9c8aa9aa2747f437bfb8decfd0bdfeceb /pcr/libsquish-svn | |
parent | 4e2b38c122e49c912ecaa01d1192a0aadd84a808 (diff) | |
download | abslibre-c5901ce7e2618d91d0745e285a7bffcd0ceaf406.tar.gz abslibre-c5901ce7e2618d91d0745e285a7bffcd0ceaf406.tar.bz2 abslibre-c5901ce7e2618d91d0745e285a7bffcd0ceaf406.zip |
packaging libsquish-svn for ryzom, replacing the old libsquish by Kervala
Diffstat (limited to 'pcr/libsquish-svn')
-rw-r--r-- | pcr/libsquish-svn/LICENSE | 24 | ||||
-rw-r--r-- | pcr/libsquish-svn/PKGBUILD | 40 |
2 files changed, 64 insertions, 0 deletions
diff --git a/pcr/libsquish-svn/LICENSE b/pcr/libsquish-svn/LICENSE new file mode 100644 index 000000000..dd0f22eb9 --- /dev/null +++ b/pcr/libsquish-svn/LICENSE @@ -0,0 +1,24 @@ +/* ----------------------------------------------------------------------------- + + Copyright (c) 2006 Simon Brown si@sjbrown.co.uk + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + -------------------------------------------------------------------------- */ diff --git a/pcr/libsquish-svn/PKGBUILD b/pcr/libsquish-svn/PKGBUILD new file mode 100644 index 000000000..c7b834b24 --- /dev/null +++ b/pcr/libsquish-svn/PKGBUILD @@ -0,0 +1,40 @@ +# Maintainer: Jorge Araya Navarro <jorgean@lavabit.com> +# Contributor: F0ruD<fzerorubigd{AT}gmail{DOT}com> +pkgname=libsquish-svn +pkgver=48 +pkgrel=4 +pkgdesc="DXT compression library - svn build" +arch=('i686' 'x86_64') +url="http://code.google.com/p/libsquish" +makedepends=('subversion' ) +license=('MIT') +provides=('libsquish') +conflicts=('libsquish' 'kervalasquish-hg' 'kervala_libsquish-hg') +mksource=("$pkgname-$pkgver"::svn+http://libsquish.googlecode.com/svn/trunk/#revision=$pkgver) +mkmd5sums=('SKIP') + +source=("libre://$pkgname-$pkgver.tar.gz" + LICENSE) + +build() { + cd "$srcdir/$pkgname-$pkgver" + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + #make install # it ignores DESTDIR, so it wound't work + mkdir -p $pkgdir/usr/{include,lib} + + install -Dm 644 squish.h $pkgdir/usr/include/squish.h + install -Dm 644 libsquish.so.0.0 $pkgdir/usr/lib/libsquish.so.0.0 + install -Dm 644 $srcdir/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE +} + +# prepare() { +# cd "$srcdir/$pkgname-$pkgver" +# sed -i "s|/usr/local|${pkgdir}/usr|g" config +# } + +sha256sums=('d1c057bf105872f50f504584fd7b31fb980ed5e235b14a92c6cb0aa7d7758e8f' + 'ed13029728a637f599833a68be22f3cc356a7f13be8d79284b2c415e172efd75') |