cebcdd7434
- Remove patented code from the source via generate--tarball.sh bnc#824484 * added backported patch from git master 0001-thumbnail-compression-make-libsquish-optional * Remove pkgconfig(colord) from Build Requires Because compression code is disabled previous cache will not work. Removing ~/.cache/darktable/mipmaps is necessary (forwarded request 180238 from toganm) OBS-URL: https://build.opensuse.org/request/show/180239 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/darktable?expand=0&rev=32
13 lines
229 B
Bash
13 lines
229 B
Bash
#!/bin/sh
|
|
|
|
VERSION=$1
|
|
|
|
tar -xJvf darktable-$VERSION.tar.xz
|
|
rm -rf darktable-$VERSION/src/external/squish
|
|
|
|
tar -cJvf darktable-$VERSION-nopatents.tar.xz darktable-$VERSION
|
|
|
|
rm -rf darktable-$VERSION/
|
|
|
|
rm darktable-$VERSION.tar.xz
|