diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-03-16 21:10:42 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-03-16 21:10:42 -0300 |
commit | 846ec2ab218d28aa24dee75503909f9337d67e46 (patch) | |
tree | 012f9c67757ff9638b3b27cfb7a8c8c6c44a92cf /community/openimageio/PKGBUILD | |
parent | f24ad15758f8eebcc46cb0c210f888491869d3f0 (diff) | |
parent | 9a940818cc3edb82afac4d73a6474e6e3374f987 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/chmsee/PKGBUILD
extra/kdepim/PKGBUILD
gnome-unstable/gnome-color-manager/PKGBUILD
gnome-unstable/seahorse/PKGBUILD
libre/pacman/PKGBUILD
testing/libreoffice/PKGBUILD
testing/util-linux/PKGBUILD
testing/xf86-input-synaptics/PKGBUILD
Diffstat (limited to 'community/openimageio/PKGBUILD')
-rw-r--r-- | community/openimageio/PKGBUILD | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/community/openimageio/PKGBUILD b/community/openimageio/PKGBUILD index 49ab732b2..837fbf183 100644 --- a/community/openimageio/PKGBUILD +++ b/community/openimageio/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 67198 2012-03-05 08:58:24Z ibiru $ +# $Id: PKGBUILD 67891 2012-03-15 20:13:49Z svenstaro $ # Contributor: SpepS <dreamspepser at yahoo dot it> # Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> _pkg=OpenImageIO pkgname=openimageio -pkgver=0.10.4 -pkgrel=6 +pkgver=1.0.1 +pkgrel=1 pkgdesc="A library for reading and writing images, including classes, utilities, and applications." arch=(i686 x86_64) url="http://www.openimageio.org/" @@ -14,19 +14,12 @@ depends=('openexr' 'boost-libs' 'jasper' 'glew') makedepends=('cmake' 'qt' 'python2' 'boost') optdepends=('qt: iv image viewer' 'python2: bindings support') options=(!buildflags) -source=("https://github.com/$_pkg/oiio/tarball/Release-${pkgver/_/-}" - "openimageio-0.10.2-libpng15.patch") -md5sums=('08a1bc2b82862ad5547bba569f4f633f' - 'd12829808610a54b6bc3350dc5419db3') +source=("https://github.com/$_pkg/oiio/tarball/Release-${pkgver/_/-}") +md5sums=('5b74d7bda23f4b0e33c5104fd8dbdf79') build() { cd "$srcdir"/$_pkg* - # remove insecure rpath - sed -i "/RPATH/d" src/CMakeLists.txt - - patch -d src/ -Np0 < $srcdir/openimageio-0.10.2-libpng15.patch - # strange bug on i686, see https://github.com/OpenImageIO/oiio/issues/204 [[ $CARCH == "i686" ]] && make debug || make } @@ -46,6 +39,9 @@ package() { # python module cp -r python/* "$pkgdir/usr/lib/python2.7/site-packages" + pwd + cd ../.. # license + pwd install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } |