blob: 79da50fad8c972032351163301256f9608c1a51d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
pkgname=libtiff-git
pkgver=4.6.0.r198.g4e63559f
pkgrel=1
pkgdesc="TIFF library and utilities"
arch=('i686' 'x86_64')
url="https://libtiff.gitlab.io/libtiff/"
license=('libtiff')
depends=('glibc' 'libjpeg' 'xz' 'zlib' 'zstd')
makedepends=('git' 'freeglut' 'glu' 'jbigkit' 'mesa')
optdepends=('freeglut: for using tiffgt')
provides=("libtiff=$pkgver")
conflicts=('libtiff')
options=('staticlibs')
source=("git+https://gitlab.com/libtiff/libtiff.git")
sha256sums=('SKIP')
pkgver() {
cd "libtiff"
git describe --long --tags | sed 's/^Release-v//;s/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "libtiff"
autoreconf -fi
CFLAGS="$CFLAGS -ffat-lto-objects" \
CXXFLAGS="$CXXFLAGS -ffat-lto-objects" \
./configure \
--prefix="/usr" \
--with-docdir="/usr/share/doc/libtiff"
make
}
check() {
cd "libtiff"
#make check
}
package() {
cd "libtiff"
make DESTDIR="$pkgdir" install
install -Dm644 "LICENSE.md" -t "$pkgdir/usr/share/licenses/libtiff"
}
|