mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
40 lines
1.2 KiB
Bash
40 lines
1.2 KiB
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=leptonica
|
|
pkgver=1.68
|
|
pkgrel=1
|
|
pkgdesc="Software that is broadly useful for image processing and image analysis applications"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.leptonica.com/"
|
|
license=('custom')
|
|
depends=('glibc')
|
|
makedepends=('giflib' 'gnuplot' 'libjpeg' 'libpng' 'libtiff' 'zlib')
|
|
categories=('graphics')
|
|
# 'webp'
|
|
optdepends=('giflib: for supporting gif files'
|
|
'gnuplot: gnuplot support'
|
|
'libjpeg: for supporting jpeg files'
|
|
'libpng: for supporting png files'
|
|
'libtiff: for supporting tiff files'
|
|
'zlib: for supporting compressed files')
|
|
# 'webp: for supporting webp files'
|
|
source=(http://www.leptonica.com/source/leptonica-${pkgver}.tar.gz)
|
|
md5sums=('5cd7092f9ff2ca7e3f3e73bfcd556403')
|
|
|
|
build() {
|
|
cd ${srcdir}/leptonica-${pkgver}
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/leptonica-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
install -D leptonica-license.txt ${pkgdir}/usr/share/licenses/leptonica/leptonica-license.txt
|
|
} |