mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
44 lines
870 B
Bash
44 lines
870 B
Bash
SUMMARY="A JPEG optimizer, making JPEG files smaller"
|
|
DESCRIPTION="Jpegoptim is a utility to optimize jpeg files. Provides lossless \
|
|
optimization (based on optimizing the Huffman tables) and \"lossy\" \
|
|
optimization based on setting maximum quality factor."
|
|
HOMEPAGE="http://www.kokkonen.net/tjko/projects.html"
|
|
COPYRIGHT="1996-2016 Timo Kokkonen"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="2"
|
|
SOURCE_URI="http://www.kokkonen.net/tjko/src/jpegoptim-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="89a03ea2dfe9483dfb2e009a2851be0befb0deb7cb45c04550bcc91e1e88c1b2"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
|
|
PROVIDES="
|
|
jpegoptim = $portVersion
|
|
cmd:jpegoptim = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
lib:libjpeg
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
devel:libjpeg
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:gcc
|
|
cmd:make
|
|
cmd:awk
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
runConfigure ./configure
|
|
make
|
|
make strip
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
}
|