35 lines
867 B
Bash
35 lines
867 B
Bash
# Template file for 'zimg'
|
|
pkgname=zimg
|
|
# 2.1 needs a patch to cross compile.
|
|
# Please remove on update
|
|
# https://github.com/sekrit-twc/zimg/issues/47
|
|
version=2.2
|
|
revision=1
|
|
wrksrc=zimg-release-${version}
|
|
build_style=gnu-configure
|
|
hostmakedepends="automake libtool pkg-config"
|
|
short_desc="Image processing library"
|
|
maintainer="lemmi <lemmi@nerd2nerd.org>"
|
|
license="WTFPL"
|
|
homepage="https://github.com/sekrit-twc/zimg"
|
|
distfiles="https://github.com/sekrit-twc/zimg/archive/release-${version}.tar.gz"
|
|
checksum=573ef25858623d90158f829d1fa66d4ef429a005034cae7a9dc3e9d250b9abf7
|
|
|
|
pre_configure() {
|
|
./autogen.sh
|
|
}
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
}
|
|
|
|
zimg-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|