contrib/openjpeg2/Pkgfile

24 lines
468 B
Plaintext
Raw Normal View History

2019-03-19 08:10:12 +01:00
# Description: An open source JPEG 2000 codec.
# URL: https://github.com/uclouvain/openjpeg
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: lcms2 libpng
name=openjpeg2
2019-05-20 12:42:46 +02:00
version=2.3.1
2019-03-19 08:10:12 +01:00
release=1
2019-05-20 12:42:46 +02:00
source=(https://github.com/uclouvain/openjpeg/archive/v$version/openjpeg-$version.tar.gz)
2019-03-19 08:10:12 +01:00
build() {
cd openjpeg-$version
mkdir build
cd build
cmake .. \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr
make
make DESTDIR=$PKG install
}