mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 04:16:46 +02:00
testing/qimageblitz: new aport
This commit is contained in:
parent
0ee395c950
commit
172f6fc20b
40
testing/qimageblitz/APKBUILD
Normal file
40
testing/qimageblitz/APKBUILD
Normal file
@ -0,0 +1,40 @@
|
||||
# Contributor: William Pitcock <nenolod@dereferenced.org>
|
||||
# Maintainer:
|
||||
pkgname=qimageblitz
|
||||
pkgver=0.0.4
|
||||
pkgrel=0
|
||||
pkgdesc="qt image processing library"
|
||||
url="http://sourceforge.net/projects/qimageblitz"
|
||||
arch="all"
|
||||
license="LGPL"
|
||||
depends=
|
||||
depends_dev="qt-dev"
|
||||
makedepends="$depends_dev cmake automoc4"
|
||||
install=""
|
||||
subpackages="$pkgname-dev"
|
||||
source="http://sourceforge.net/projects/qimageblitz/files/qimageblitz-$pkgver.tar.bz2"
|
||||
|
||||
_builddir="$srcdir"/qimageblitz-$pkgver
|
||||
prepare() {
|
||||
local i
|
||||
cd "$_builddir"
|
||||
for i in $source; do
|
||||
case $i in
|
||||
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
||||
esac
|
||||
done
|
||||
mkdir -p "$_builddir"/build
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$_builddir"/build
|
||||
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_SKIP_RPATH=ON "$_builddir" || return 1
|
||||
make || return 1
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$_builddir"/build
|
||||
make DESTDIR="$pkgdir" install || return 1
|
||||
}
|
||||
|
||||
md5sums="cb87c7f1c0455e8984ee4830f1e749cf qimageblitz-0.0.4.tar.bz2"
|
||||
Loading…
x
Reference in New Issue
Block a user